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
510
從工程師到總經理
tzangms
19
10k
克服人心的障礙,跨越自動化測試的門檻
tzangms
7
2.4k
StreetVoice 自動化部署演進
tzangms
0
540
小海之路
tzangms
2
390
The workflow of the New StreetVoice
tzangms
20
2.1k
小海嚴選
tzangms
6
1.4k
StreetVoice: From Windows/ASP to Linux/Python
tzangms
12
1.7k
Other Decks in Technology
See All in Technology
新しい風。SolidFlutterで実現するシンプルな状態管理
zozotech
PRO
0
120
大規模モノレポの秩序管理 失速しない多言語化フロントエンドの運用 / JSConf JP 2025
shoota
0
250
大規模プロダクトで実践するAI活用の仕組みづくり
k1tikurisu
4
1.6k
プロジェクトの空気を読んで開発してくれるPerlのAIツールがほしい
kfly8
2
100
その意思決定、まだ続けるんですか? ~痛みを超えて未来を作る、AI時代の撤退とピボットの技術~
applism118
0
260
ZOZOTOWNカート決済リプレイス ── モジュラモノリスという過渡期戦略
zozotech
PRO
0
460
現地速報!Microsoft Ignite 2025 M365 Copilotアップデートレポート
kasada
1
1.3k
はじめての OSS コントリビューション 〜小さな PR が世界を変える〜
chiroito
4
340
ABEMAのCM配信を支えるスケーラブルな分散カウンタの実装
hono0130
4
960
レガシーで硬直したテーブル設計から変更容易で柔軟なテーブル設計にする
red_frasco
0
110
Lazy Constant - finalフィールドの遅延初期化
skrb
0
230
JJUG CCC 2025 Fall バッチ性能!!劇的ビフォーアフター
hayashiyuu1
1
370
Featured
See All Featured
BBQ
matthewcrist
89
9.9k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
17k
Navigating Team Friction
lara
190
15k
Context Engineering - Making Every Token Count
addyosmani
9
390
How GitHub (no longer) Works
holman
315
140k
KATA
mclloyd
PRO
32
15k
Building a Modern Day E-commerce SEO Strategy
aleyda
45
8.1k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
253
22k
Stop Working from a Prison Cell
hatefulcrawdad
272
21k
How To Stay Up To Date on Web Technology
chriscoyier
791
250k
Site-Speed That Sticks
csswizardry
13
970
Facilitating Awesome Meetings
lara
57
6.6k
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!