Steps to deploy a Django app to heroku
- make sure your requirements.txt file is in the top directory.
- create a Procfile in the top directory
- contents: "web: gunicorn --pythonpath .wsgi --log-file -"
- install gunicorn
- create runtime.txt in the top directory
- contents: "python-3.6.10"
- modify your settings.py
- install whitenoise