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
420
CSCD27 Malicious Software
thierrysans
0
380
CSCD27 Protection
thierrysans
0
490
CSCD27 System Insecurity
thierrysans
0
420
CSCD27 Human Authentication
thierrysans
0
340
CSCD27 Network security
thierrysans
0
550
CSCD27 Network (in)security
thierrysans
0
550
CSCD27 Cryptography Protocols
thierrysans
0
700
Other Decks in Education
See All in Education
Education-JAWS #3 ~教育現場に、AWSのチカラを~
masakiokuda
0
220
実務プログラム
takenawa
0
15k
自己紹介 / who-am-i
yasulab
PRO
3
5.4k
Técnicas y Tecnología para la Investigación Neurocientífica en el Neuromanagement
jvpcubias
0
100
ROSConJP 2025 発表スライド
f0reacharr
0
150
Présentation_1ère_Spé_2025.pdf
bernhardsvt
0
140
(2025) L'origami, mieux que la règle et le compas
mansuy
0
130
バックオフィス組織にも「チームトポロジー」の考えが使えるかもしれない!!
masakiokuda
0
120
フィードバックの伝え方、受け身のココロ / The Way of Feedback: Words and the Receiving Heart
spring_aki
1
110
20250611_なんでもCopilot1年続いたぞ~
ponponmikankan
0
160
RSJ2025 ランチョンセミナー 一歩ずつ世界へ:学生・若手研究者のための等身大の国際化の始め方
t_inamura
0
230
【品女100周年企画】Pitch Deck
shinagawajoshigakuin_100th
0
5.7k
Featured
See All Featured
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.5k
Statistics for Hackers
jakevdp
799
220k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.1k
Embracing the Ebb and Flow
colly
87
4.8k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
358
30k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
31
2.2k
The Straight Up "How To Draw Better" Workshop
denniskardys
236
140k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
[RailsConf 2023] Rails as a piece of cake
palkan
57
5.8k
The Pragmatic Product Professional
lauravandoore
36
6.8k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4k
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