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
250
CSCD27 Web Security
thierrysans
0
430
CSCD27 Malicious Software
thierrysans
0
380
CSCD27 Protection
thierrysans
0
490
CSCD27 System Insecurity
thierrysans
0
420
CSCD27 Human Authentication
thierrysans
0
350
CSCD27 Network security
thierrysans
0
560
CSCD27 Network (in)security
thierrysans
0
550
CSCD27 Cryptography Protocols
thierrysans
0
700
Other Decks in Education
See All in Education
2024-2025 CBT top items
cbtlibrary
0
130
Test-NUTMEG紹介スライド
mugiiicha
0
300
~キャラ付け考えていますか?~ AI時代だからこそ技術者に求められるセルフブランディングのすゝめ
masakiokuda
7
520
SISTEMA DE MEMORIA Y SU IMPACTO EN LAS DECISIONES.
jvpcubias
0
180
尊敬語「くださる」と謙譲語「いただく」の使い分け
hysmrk
0
120
(2025) L'origami, mieux que la règle et le compas
mansuy
0
160
今の私を形作る4つの要素と偶然の出会い(セレンディピティ)
mamohacy
2
110
いわゆる「ふつう」のキャリアを歩んだ人の割合(若者向け)
hysmrk
0
190
みんなのコードD&I推進レポート2025 テクノロジー分野のジェンダーギャップとその取り組みについて
codeforeveryone
0
330
Human Perception and Cognition - Lecture 4 - Human-Computer Interaction (1023841ANR)
signer
PRO
0
1.2k
[Segah 2025] Gamified Interventions for Composting Behavior in the Workplace
ezefranca
0
220
理想の英語力に一直線!最高効率な英語学習のすゝめ
logica0419
6
440
Featured
See All Featured
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Leading Effective Engineering Teams in the AI Era
addyosmani
7
680
Done Done
chrislema
186
16k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
31
2.7k
Into the Great Unknown - MozCon
thekraken
40
2.1k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.7k
Six Lessons from altMBA
skipperchong
29
4k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
140
34k
Fireside Chat
paigeccino
41
3.7k
What's in a price? How to price your products and services
michaelherold
246
12k
Thoughts on Productivity
jonyablonski
72
4.9k
The Straight Up "How To Draw Better" Workshop
denniskardys
239
140k
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