Heroku, Django, Foreman

前端 未结 1 1138
隐瞒了意图╮
隐瞒了意图╮ 2021-01-06 05:43

I am following this tutorial: http://tutorial.djangogirls.org/en/domain/README.html

But when I run foreman start web as mentioned in the heroku docs at

相关标签:
1条回答
  • 2021-01-06 06:12

    Gunicorn doesn't run on windows, so you'll need to have a separate system for running code locally. What framework are you running?

    Usually you can develop locally using a built-in development server (like python manage.py runserver for Django), and just use gunicorn on Heroku itself

    0 讨论(0)
提交回复
热议问题