Deploy Flask, psql & SQLAlchemy app to Heroku
Deploy Flask Application to Heroku
1 Install Gunicorn
python3 -m pip install gunicorn
2 Export dependencies to requirements.txt
pip freeze > requirements.txt
3 Create a Procfile
Add the file to be run by heroku. In this case the manage.py file is ...
frankeffect.hashnode.dev2 min read