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
15-437 Heroku
Search
ThierrySans
November 11, 2014
Education
0
110
15-437 Heroku
ThierrySans
November 11, 2014
Tweet
Share
More Decks by ThierrySans
See All by ThierrySans
CSCD27 Social Engineering
thierrysans
0
240
CSCD27 Web Security
thierrysans
0
410
CSCD27 Malicious Software
thierrysans
0
380
CSCD27 Protection
thierrysans
0
470
CSCD27 System Insecurity
thierrysans
0
400
CSCD27 Human Authentication
thierrysans
0
340
CSCD27 Network security
thierrysans
0
540
CSCD27 Network (in)security
thierrysans
0
550
CSCD27 Cryptography Protocols
thierrysans
0
690
Other Decks in Education
See All in Education
情報処理工学問題集 /infoeng_practices
kfujita
0
120
HCI Research Methods - Lecture 7 - Human-Computer Interaction (1023841ANR)
signer
PRO
0
710
ルクソールとツタンカーメン
masakamayama
1
850
Nodiレクチャー 「CGと数学」講義資料 2024/11/19
masatatsu
2
190
Ch2_-_Partie_2.pdf
bernhardsvt
0
110
Flip-videochat
matleenalaakso
0
14k
小・中・高等学校における情報教育の体系的な学習を目指したカリキュラムモデル案/curriculum model
codeforeveryone
2
2.3k
Qualtricsで相互作用実験する「SMARTRIQS」入門編
kscscr
0
320
HTML5 and the Open Web Platform - Lecture 3 - Web Technologies (1019888BNR)
signer
PRO
1
2.6k
Repaso electricidade e electrónica
irocho
0
200
Flinga
matleenalaakso
2
13k
Epithelium Flashcards
ndevaul
0
1k
Featured
See All Featured
Making Projects Easy
brettharned
115
5.9k
A better future with KSS
kneath
238
17k
Adopting Sorbet at Scale
ufuk
73
9.1k
Designing the Hi-DPI Web
ddemaree
280
34k
Bash Introduction
62gerente
608
210k
jQuery: Nuts, Bolts and Bling
dougneiner
61
7.5k
Building a Modern Day E-commerce SEO Strategy
aleyda
38
6.9k
4 Signs Your Business is Dying
shpigford
180
21k
Reflections from 52 weeks, 52 projects
jeffersonlam
346
20k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
246
1.3M
Dealing with People You Can't Stand - Big Design 2015
cassininazir
364
24k
A designer walks into a library…
pauljervisheath
204
24k
Transcript
Deploying on Heroku Thierry Sans
Configuring Heroku 1. Create an account on Heroku 2. Create
an application 3. Add a Postgres Database 4. Add a system variable ONHEROKU = True
Configure the Django application 1. Modify settings.py 2. Modify wsgi.py
3. Add Procfile 4. Add requirements.txt file
Deploy on Heroku using Git 1. Install heroku-toolbelt $ pip
install heroku-toolbelt 2. Login on heroku $ heroku login 3. Clone the git repository $ heroku git:clone -a yourherokuapp 4. Push to Heroku $ git push heroku master