[Answered ]-How can I change the Procfile to run the Gunicorn process in a non-standard folder on Heroku?

1👍

change

web: gunicorn --pythonpath application.george_paintings george_paintings.wsgi

to

web: gunicorn --pythonpath application.george_paintings.george_paintings.wsgi

You had a blank space in between the folder names.

Leave a comment