My project on course Python Creation Web application on Django
Deploying django project Heroku: Inctruction:
- Add file requirements.txt with library
- Add file Procfile
web: gunicorn yourproject.wsgi --log-file -
- Change django settings.py Add
import django_heroku
anddjango_heroku.settings(locals())
- Create app on heroku and execute some commands on terminal:
heroku login
git init
heroku git:remote -a appname
git push heroku master
Hereyou can find full description and project's purpose. And here you can find our project