Heroku gunicorn deploy error: NoModuleNameError

前端 未结 2 683
醉酒成梦
醉酒成梦 2020-12-21 12:36

possibly a little out my depth here, I\'ve read the heroku docs thoroughly and still don\'t quite understand how the Procfile should be set up. Trying to deploy heroku (

2条回答
  •  再見小時候
    2020-12-21 12:52

    try updating your Procfile to read as:

    web: gunicorn grad.wsgi --log-file - --log-level debug --preload --workers 1
    

    I have a few Heroku-Django apps that works with a similar setup. Let me know if it works for you?

提交回复
热议问题