You are on page 1of 11

Deploying a Python Flask app on Heroku – The Andela Way – Medium https://medium.

com/the-andela-way/deploying-a-python-flask-app-to-heroku-41250bda27d0

This embedded content is from a site that


does not comply with the Do Not Track
(DNT) setting now enabled on your browser.

Please note, if you click through and view it

1 of 11 3/10/2019, 6:39 PM
Deploying a Python Flask app on Heroku – The Andela Way – Medium https://medium.com/the-andela-way/deploying-a-python-flask-app-to-heroku-41250bda27d0

2 of 11 3/10/2019, 6:39 PM
Deploying a Python Flask app on Heroku – The Andela Way – Medium https://medium.com/the-andela-way/deploying-a-python-flask-app-to-heroku-41250bda27d0

heroku login

git clone https://github.com/jokamjohn/bucket_api_heroku.git

bucket_api_heroku

3 of 11 3/10/2019, 6:39 PM
Deploying a Python Flask app on Heroku – The Andela Way – Medium https://medium.com/the-andela-way/deploying-a-python-flask-app-to-heroku-41250bda27d0

pip install -r requirements.txt

requirements.txt pip freeze > requirements.txt

Procfile

pip install gunicorn

pip freeze > requirements.txt

Procfile

4 of 11 3/10/2019, 6:39 PM
Deploying a Python Flask app on Heroku – The Andela Way – Medium https://medium.com/the-andela-way/deploying-a-python-flask-app-to-heroku-41250bda27d0

web: gunicorn app:app

web

app:app

heroku create kbucket-api-heroku

k-bucket

5 of 11 3/10/2019, 6:39 PM
Deploying a Python Flask app on Heroku – The Andela Way – Medium https://medium.com/the-andela-way/deploying-a-python-flask-app-to-heroku-41250bda27d0

(venv) G:\PyProjects\bucket_api_heroku>heroku create


kbucket-api-heroku
Creating kbucket-api-heroku... done
https://kbucket-api-heroku.herokuapp.com/ |
https://git.heroku.com/kbucket-api-heroku.git

https://git.heroku.com/kbucket-api-heroku.git

Heroku master

6 of 11 3/10/2019, 6:39 PM
Deploying a Python Flask app on Heroku – The Andela Way – Medium https://medium.com/the-andela-way/deploying-a-python-flask-app-to-heroku-41250bda27d0

overview

Procfile

release: python manage.py db upgrade

db upgrade manage.py

7 of 11 3/10/2019, 6:39 PM
Deploying a Python Flask app on Heroku – The Andela Way – Medium https://medium.com/the-andela-way/deploying-a-python-flask-app-to-heroku-41250bda27d0

Register a user

switch to console

production

body

201

8 of 11 3/10/2019, 6:39 PM
Deploying a Python Flask app on Heroku – The Andela Way – Medium https://medium.com/the-andela-way/deploying-a-python-flask-app-to-heroku-41250bda27d0

9 of 11 3/10/2019, 6:39 PM
Deploying a Python Flask app on Heroku – The Andela Way – Medium https://medium.com/the-andela-way/deploying-a-python-flask-app-to-heroku-41250bda27d0

10 of 11 3/10/2019, 6:39 PM
Deploying a Python Flask app on Heroku – The Andela Way – Medium https://medium.com/the-andela-way/deploying-a-python-flask-app-to-heroku-41250bda27d0

11 of 11 3/10/2019, 6:39 PM

You might also like