逐步开始使用django heroku页面。 https://devcenter.heroku.com/articles/django
在领班开始步骤,领班未正确运行。 ProcFile内容,
web: gunicorn hellodjango.wsgi
要求内容:
Django==1.5.1
dj-database-url==0.2.1
gunicorn==0.17.4
psycopg2==2.4.5
完全按照教程输入虚拟环境,
位于脚本目录下的gunicorn,procfile和requirements,wsgi.py文件位于目录hellodjango中,路径为C:\hellodjango2\newvirtualenv\Scripts\hellodjango
python和python / scripts位于pathfile上。
这是输出
(newvirtualenv) C:\hellodjango2\newvirtualenv\Scripts>foreman start
09:48:58 web.1 | started with pid 3580
09:48:58 web.1 | exited with code 1
09:48:58 system | sending SIGKILL to all processes
答案 0 :(得分:0)
按照今天的heroku文档,它建议您使用:
$ heroku local web
而不是foreman
。你能尝试一下吗?
你可以做的另一件事就是检查一切是否正常工作:单独运行django:python manage.py runserver
,如果它不起作用,你可以添加该调用生成的回溯吗?