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
480
CSCD27 System Insecurity
thierrysans
0
410
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
Image compression
hachama
0
400
とある EM の初めての育休からの学び
clown0082
1
1.4k
Mathematics used in cryptography around us
herumi
2
760
Multimodal Interaction - Lecture 3 - Next Generation User Interfaces (4018166FNR)
signer
PRO
0
1.4k
Future Trends and Review - Lecture 12 - Web Technologies (1019888BNR)
signer
PRO
0
2.6k
ISMS審査準備ブック_サンプル【LRM 情報セキュリティお役立ち資料】
lrm
0
1.1k
Web からのデータ収集と探究事例の紹介 / no94_jsai_seminar
upura
0
130
Info Session MSc Computer Science & MSc Applied Informatics
signer
PRO
0
110
新人研修の課題と未来を考える
natsukokanda1225
0
1.3k
Diseño de estrategia de analítica del aprendizaje en tu centro educativo.
tecuribarri
0
150
Ch4_-_Cours_2.pdf
bernhardsvt
0
170
(説明資料)オンラインゆっくり相談室
ytapples613
PRO
0
160
Featured
See All Featured
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
27
1.9k
KATA
mclloyd
29
14k
Testing 201, or: Great Expectations
jmmastey
42
7.2k
How to Ace a Technical Interview
jacobian
276
23k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
30
2.2k
What's in a price? How to price your products and services
michaelherold
244
12k
Measuring & Analyzing Core Web Vitals
bluesmoon
6
250
Java REST API Framework Comparison - PWX 2021
mraible
29
8.4k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
46
2.3k
Building an army of robots
kneath
303
45k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
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