Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
Deploy Django on Windows Azure web sites in 5 minutes
Ming Shien Tzang
May 25, 2013
Technology
1
1.1k
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
350
從工程師到總經理
tzangms
19
9.6k
克服人心的障礙,跨越自動化測試的門檻
tzangms
7
2k
StreetVoice 自動化部署演進
tzangms
0
450
小海之路
tzangms
2
360
The workflow of the New StreetVoice
tzangms
20
1.9k
小海嚴選
tzangms
6
1.3k
StreetVoice: From Windows/ASP to Linux/Python
tzangms
12
1.4k
Other Decks in Technology
See All in Technology
AWS Glue 触ってみた
tomuro
1
160
Google Cloud Updates 2022/05/16-05/31
no24oka
2
110
個人的に全然使わなかったUiPathのアクティビティ
saoritakita
0
110
【基調講演】Internet of Everywhere 〜ひろがるデジタル・つなげるIoT〜/SORACOM Discovery 2022 day1
soracom
PRO
0
240
【SAP知らない人向け】SAP on AWS 個人学習メモ/sap-on-aws-study
emiki
3
2.4k
Target SDK Versionを上げない Notification runtime permission対応
napplecomputer
0
150
Rethinking how distributed applications are built
tillrohrmann
0
130
SDK Design and Publishing For Kotlin Multiplatform Mobile
kpgalligan
1
120
JAWS-UG re:Habilitaion 報告 / JAWS-UG OITA rehabilitation
hiranofumio
0
140
Autonomous Database Cloud 技術詳細 / adb-s_technical_detail_jp
oracle4engineer
PRO
10
18k
Design for Humans: How to make better modernization decisions
indualagarsamy
2
140
220628 「Google AppSheet」タスク管理アプリをライブ作成 吉積情報伊藤さん
comucal
PRO
0
270
Featured
See All Featured
Put a Button on it: Removing Barriers to Going Fast.
kastner
56
2.3k
Infographics Made Easy
chrislema
233
17k
Product Roadmaps are Hard
iamctodd
34
6.6k
Build your cross-platform service in a week with App Engine
jlugia
219
17k
Java REST API Framework Comparison - PWX 2021
mraible
PRO
11
4.7k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
37
3.3k
Designing for humans not robots
tammielis
241
23k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
29
4.3k
Debugging Ruby Performance
tmm1
65
10k
It's Worth the Effort
3n
172
25k
Support Driven Design
roundedbygravity
86
8.5k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
224
49k
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!