I\'m trying to setup a test Django project on Heroku. Following the advice here and in the Heroku Getting Started I\'m trying to use gunicorn instead of the Dj
I had this issue and landed up having to point directly to the python path and then set the settings reference.
In the end my Procfile looks like this:
web: gunicorn_django --pythonpath=/app/project --settings=settings
I had to run heroku run which showed the env variables and that's where I was able to find the /app which I prepended to my project name.