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
490
從工程師到總經理
tzangms
19
10k
克服人心的障礙,跨越自動化測試的門檻
tzangms
7
2.4k
StreetVoice 自動化部署演進
tzangms
0
520
小海之路
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
ひまプロプレゼンツ 「エンジニア格付けチェック 〜春の公開収録スペシャル〜」
kaaaichi
0
140
Dapr For Java Developers SouJava 25
salaboy
1
130
チームの性質によって変わる ADR との向き合い方と、生成 AI 時代のこれから / How to deal with ADR depends on the characteristics of the team
mh4gf
4
340
小さく始めるDevOps 内製化支援から見えたDevOpsの始め方 / 20250317 Ken Takayanagi
shift_evolve
1
100
Vision Language Modelを活用した メルカリの類似画像レコメンドの性能改善
yadayuki
9
1.3k
Enterprise AI in 2025?
pamelafox
0
100
スケールアップ企業のQA組織のバリューを最大限に引き出すための取り組み
tarappo
4
960
Proxmox VE超入門 〜 無料で作れるご自宅仮想化プラットフォームブックマークする
devops_vtj
0
160
DevinはクラウドエンジニアAIになれるのか!? 実践的なガードレール設計/devin-can-become-a-cloud-engineer-ai-practical-guardrail-design
tomoki10
3
1.4k
コンソールで学ぶ!AWS CodePipelineの機能とオプション
umekou
2
120
AWS CDK コントリビュート はじめの一歩
yendoooo
1
120
20250328_OpenAI製DeepResearchは既に一種のAGIだと思う話
doradora09
PRO
0
150
Featured
See All Featured
Java REST API Framework Comparison - PWX 2021
mraible
29
8.5k
Building Flexible Design Systems
yeseniaperezcruz
328
38k
A Tale of Four Properties
chriscoyier
158
23k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
12
1.4k
Testing 201, or: Great Expectations
jmmastey
42
7.4k
Fireside Chat
paigeccino
37
3.3k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
7
620
Speed Design
sergeychernyshev
28
860
The Straight Up "How To Draw Better" Workshop
denniskardys
232
140k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
Done Done
chrislema
183
16k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
331
21k
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!