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
AIエージェントの継続的改善のためオブザーバビリティ
pharma_x_tech
6
1.4k
Prox Industries株式会社 会社紹介資料
proxindustries
0
180
Navigation3でViewModelにデータを渡す方法
mikanichinose
0
200
SFTPコンテナからファイルをダウンロードする
dip_tech
PRO
0
580
初めてのAzure FunctionsをClaude Codeで作ってみた / My first Azure Functions using Claude Code
hideakiaoyagi
1
180
米国国防総省のDevSecOpsライフサイクルをAWSのセキュリティサービスとOSSで実現
syoshie
2
780
Абьюзим random_bytes(). Фёдор Кулаков, разработчик Lamoda Tech
lamodatech
0
270
Snowflake Summit 2025全体振り返り / Snowflake Summit 2025 Overall Review
mtpooh
2
190
Model Mondays S2E02: Model Context Protocol
nitya
0
180
【TiDB GAME DAY 2025】Shadowverse: Worlds Beyond にみる TiDB 活用術
cygames
0
830
Windows 11 で AWS Documentation MCP Server 接続実践/practical-aws-documentation-mcp-server-connection-on-windows-11
emiki
0
670
監視のこれまでとこれから/sakura monitoring seminar 2025
fujiwara3
10
2.8k
Featured
See All Featured
KATA
mclloyd
29
14k
Build The Right Thing And Hit Your Dates
maggiecrowley
36
2.8k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.7k
Bash Introduction
62gerente
614
210k
Rebuilding a faster, lazier Slack
samanthasiow
81
9k
Done Done
chrislema
184
16k
Code Reviewing Like a Champion
maltzj
524
40k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.5k
Art, The Web, and Tiny UX
lynnandtonic
299
21k
The Art of Programming - Codeland 2020
erikaheidi
54
13k
Speed Design
sergeychernyshev
31
1k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
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!