Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Deploy Django on Windows Azure web sites in 5 m...
Search
Ming Shien Tzang
May 25, 2013
Technology
1
1.2k
Deploy Django on Windows Azure web sites in 5 minutes
Ming Shien Tzang
May 25, 2013
Tweet
Share
More Decks by Ming Shien Tzang
See All by Ming Shien Tzang
英文有聲書這樣聽就對了
tzangms
0
480
從工程師到總經理
tzangms
19
9.9k
克服人心的障礙,跨越自動化測試的門檻
tzangms
7
2.4k
StreetVoice 自動化部署演進
tzangms
0
510
小海之路
tzangms
2
380
The workflow of the New StreetVoice
tzangms
20
2.1k
小海嚴選
tzangms
6
1.4k
StreetVoice: From Windows/ASP to Linux/Python
tzangms
12
1.6k
Other Decks in Technology
See All in Technology
pandasはPolarsに性能面で追いつき追い越せるのか
vaaaaanquish
4
4.6k
Commitment vs Harrisonism - Keynote for Scrum Niseko 2024
miholovesq
6
1.1k
Oracle Cloud Infrastructureデータベース・クラウド:各バージョンのサポート期間
oracle4engineer
PRO
27
12k
Gradle: The Build System That Loves To Hate You
aurimas
2
150
日経電子版におけるリアルタイムレコメンドシステム開発の事例紹介/nikkei-realtime-recommender-system
yng87
1
510
ABEMA のコンテンツ制作を最適化!生成 AI x クラウド映像編集システム / abema-ai-editor
cyberagentdevelopers
PRO
1
180
APIテスト自動化の勘所
yokawasa
7
4.2k
最速最小からはじめるデータプロダクト / Data Product MVP
amaotone
5
740
ガチ勢によるPipeCD運用大全〜滑らかなCI/CDを添えて〜 / ai-pipecd-encyclopedia
cyberagentdevelopers
PRO
3
210
MAMを軸とした動画ハンドリングにおけるAI活用前提の整備と次世代ビジョン / abema-ai-mam
cyberagentdevelopers
PRO
1
120
新卒1年目が向き合う生成AI事業の開発を加速させる技術選定 / ai-web-launcher
cyberagentdevelopers
PRO
7
1.5k
プロダクトチームへのSystem Risk Records導入・運用事例の紹介/Introduction and Case Studies on Implementing and Operating System Risk Records for Product Teams
taddy_919
1
170
Featured
See All Featured
It's Worth the Effort
3n
183
27k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
664
120k
The Art of Programming - Codeland 2020
erikaheidi
51
13k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
27
790
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
43
6.6k
Measuring & Analyzing Core Web Vitals
bluesmoon
1
40
Automating Front-end Workflow
addyosmani
1365
200k
4 Signs Your Business is Dying
shpigford
180
21k
YesSQL, Process and Tooling at Scale
rocio
167
14k
Become a Pro
speakerdeck
PRO
24
5k
What's in a price? How to price your products and services
michaelherold
243
12k
Transcript
Deploy Django on Windows Azure web sites in 5 minutes
by @tzangms
Start from scratch you can deploy django from library in
1 minutes
musician @tzangms CTO of StreetVoice 小海
I won’t Live Demo today
What PaaS I’ve used •Heroku •AppEngine •dotcloud •AWS •ep.io (dead)
•djangy (dead)
What I like in Azure
Nice Dashboard
None
Easy deployment just a few clicks
None
Then it’s automatic!
None
Visual Studio is too complicated for me So I stick
with the command line.
Important Concept
You have to commit python packages in `site-packages`
$ pip install <package> \ -t site-packages -t = target
Dir Structure and that’s the site-packages I just mentioned
Quick Start
tzangms/django-azure-template github.com I already made a django template
Follow the steps in README
Then your will get this page
Configuration in official document
You don’t have to do these settings
You need web.config
There is more but I did not test it yet.
Storage there is django-storages
SQL Server there is django-mssql
Thanks!