I\'m trying to deploy my Django application to Heroku. The migrations are in my local Git. When I try:
git push heroku master heroku run python manage.py syncdb
pip install django-heroku
Add import django_heroku at top of file settings.py
import django_heroku
settings.py
Place django_heroku.settings(locals()) at the very bottom of settings.py
django_heroku.settings(locals())
It will automatically configure your db. You can learn more on their website