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
480
CSCD27 System Insecurity
thierrysans
0
410
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
小さなチャレンジが生んだチームの大きな変化 -私のふりかえり探求の原点
callas1900
0
530
郷土教育モデル事業(香川県小豆島町).pdf
bandg
0
190
2025年度春学期 統計学 第3回 クロス集計と感度・特異度,データの可視化 (2025. 4. 24)
akiraasano
PRO
0
130
Data Processing and Visualisation Frameworks - Lecture 6 - Information Visualisation (4019538FNR)
signer
PRO
1
2.4k
より良い学振申請書(DC)を作ろう 2025
luiyoshida
1
3.2k
OpenSourceSummitJapanを運営してみた話
kujiraitakahiro
0
700
Webリテラシー基礎
takenawa
0
5k
America and the World
oripsolob
0
510
演習問題
takenawa
0
5k
Tutorial: Foundations of Blind Source Separation and Its Advances in Spatial Self-Supervised Learning
yoshipon
1
110
Interaction - Lecture 10 - Information Visualisation (4019538FNR)
signer
PRO
0
2k
2025.05.10 技術書とVoicyとわたし #RPALT
kaitou
1
210
Featured
See All Featured
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
252
21k
Become a Pro
speakerdeck
PRO
28
5.4k
Docker and Python
trallard
44
3.4k
For a Future-Friendly Web
brad_frost
179
9.8k
Java REST API Framework Comparison - PWX 2021
mraible
31
8.6k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Optimising Largest Contentful Paint
csswizardry
37
3.3k
Git: the NoSQL Database
bkeepers
PRO
430
65k
Into the Great Unknown - MozCon
thekraken
39
1.9k
BBQ
matthewcrist
89
9.7k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
138
34k
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