我正在尝试按照这个django heroku设置文档...但是在尝试启动工头时我遇到了一些问题。
(注意,我正在运行Windows 7)
我正在关注的步骤(在git bash中):
克里特岛虚拟环境:
$ virtualenv venv
将其设为有效:
$ source venv/Scripts/activate
安装postgresql(从django-toolbelt单独执行,因为我没有视觉工作室......我按照这种方法http://www.stickpeople.com/projects/python/win-psycopg/
easy_install psycopg2-2.5.3.win-amd64-py2.7-pg9.3.4-release.exe
安装django-toolbelt:
$ pip install django-toolbelt
一切都成功安装。我启动了这个项目:
$ django-admin.py startproject hellodjango .
使用以下内容在根目录中创建Procfile:
web: gunicorn hellodjango.wsgi --log-file -
最后,我尝试启动领班:
$ foreman start
我收到以下错误:
13:33:48 web.1 | started with pid 4712
13:33:48 web.1 | exited with code 1
13:33:48 system | sending SIGKILL to all processes
13:33:48 | Traceback (most recent call last):
(venv)