For those who need a Django project ready to deply on Heroku.
$ git clone https://github.com/MhamedBendenia/django-heroku-starter-kit.git
$ cd django-heroku-starter-kit
$ pip install -r requirements.txt
1- First of all, create a Heroku account: https://signup.heroku.com/
2- Login into your account
$ heroku login
3- Create an app on Heroku
$ heroku create project_name
4- Configure GitHub integration in the Deploy tab of apps in the Heroku Dashboard.
5- Enable automatic deploys for a GitHub branch.
$ git add .
$ git commit -m "My first Heroku app"
$ git push origin master
The link should be : https://<project_name>.herokuapp.com/
Check the deployed app for this project: https://django-heroku-starter-kit.herokuapp.com/