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
500
從工程師到總經理
tzangms
19
10k
克服人心的障礙,跨越自動化測試的門檻
tzangms
7
2.4k
StreetVoice 自動化部署演進
tzangms
0
530
小海之路
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.6k
Other Decks in Technology
See All in Technology
shake-upを科学する
rsakata
7
1k
全部AI、全員Cursor、ドキュメント駆動開発 〜DevinやGeminiも添えて〜
rinchsan
10
5.1k
Introduction to Sansan for Engineers / エンジニア向け会社紹介
sansan33
PRO
5
39k
american aa airlines®️ USA Contact Numbers: Complete 2025 Support Guide
aaguide
0
500
ClaudeCodeにキレない技術
gtnao
1
860
ポストコロナ時代の SaaS におけるコスト削減の意義
izzii
1
470
All About Sansan – for New Global Engineers
sansan33
PRO
1
1.2k
How Do I Contact Jetblue Airlines® Reservation Number: Fast Support Guide
thejetblueairhelpsupport
0
150
60以上のプロダクトを持つ組織における開発者体験向上への取り組み - チームAPIとBackstageで構築する組織の可視化基盤 - / sre next 2025 Efforts to Improve Developer Experience in an Organization with Over 60 Products
vtryo
3
1.9k
Maintainer Meetupで「生の声」を聞く ~講演だけじゃないKubeCon
logica0419
0
110
LLM拡張解体新書/llm-extension-deep-dive
oracle4engineer
PRO
23
6.2k
〜『世界中の家族のこころのインフラ』を目指して”次の10年”へ〜 SREが導いたグローバルサービスの信頼性向上戦略とその舞台裏 / Towards the Next Decade: Enhancing Global Service Reliability
kohbis
3
1.5k
Featured
See All Featured
Into the Great Unknown - MozCon
thekraken
40
1.9k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Scaling GitHub
holman
460
140k
[RailsConf 2023] Rails as a piece of cake
palkan
55
5.7k
Embracing the Ebb and Flow
colly
86
4.8k
The World Runs on Bad Software
bkeepers
PRO
70
11k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.4k
Reflections from 52 weeks, 52 projects
jeffersonlam
351
21k
Making the Leap to Tech Lead
cromwellryan
134
9.4k
KATA
mclloyd
30
14k
How to Ace a Technical Interview
jacobian
278
23k
Mobile First: as difficult as doing things right
swwweet
223
9.7k
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!