Skip to content Skip to sidebar Skip to footer

Worker Failed To Boot

I'm trying to deploy my Django project on Heroku, but something is going wrong, and I'm not able to found out what is happening, and what to do in order to solve this. I read in ot

Solution 1:

SOLUTION:

The problem was the location of my Procfile file: it has to be on the same path as manage.py. That's all!

Solution 2:

Your gunicorn start command looks strange:

Starting process with command `gunicorn mysite.wsgi --log-file -`

The command should specify the module name and variable name separated with a colon, like this:

gunicorn mysite.wsgi:application

Post a Comment for "Worker Failed To Boot"