我正在尝试在Heroku上部署此应用https://bitbucket.org/hybird/creme_crm-1.2。 我按照指南https://devcenter.heroku.com/articles/django进行了操作 该应用程序使用django dev服务器或gunicorn与“foreman start”在本地服务器上正常工作但在Heroku上失败并出现此错误:
[INFO] Starting gunicorn 0.14.6
Starting gunicorn 0.14.6
[INFO] Listening at: http://0.0.0.0:16635 (2)
Listening at: http://0.0.0.0:16635 (2)
[INFO] Using worker: sync
Using worker: sync
[INFO] Booting worker with pid: 5
Booting worker with pid: 5
response = view_func(request, *args, **kwargs)
File "/app/.heroku/venv/lib/python2.7/site-packages/django/views/decorators/cache.py", line 79, in _wrapped_view_func
response = view_func(request, *args, **kwargs)
File "/app/.heroku/venv/lib/python2.7/site-packages/django/contrib/auth/views.py", line 69, in login
context_instance=RequestContext(request, current_app=current_app))
File "/app/.heroku/venv/lib/python2.7/site-packages/django/template/context.py", line 172, in __init__
for processor in get_standard_processors() + processors:
File "/app/.heroku/venv/lib/python2.7/site-packages/django/template/context.py", line 150, in get_standard_processors
raise ImproperlyConfigured('Error importing request processor module %s: "%s"' % (module, e))
ImproperlyConfigured: Error importing request processor module creme_core.context_processors: "No module named creme"
答案 0 :(得分:0)
错误说您缺少一个模块:creme_core
将项目部署到heroku时,heroku使用pip冻结需求文件,该文件包含项目中的所有模块。 Heroku在部署应用程序时下载需求文件中的所有模块。
确保你有一个requirments.txt文件(pip冻结文件):它位于pip freeze here下的文档中
答案 1 :(得分:0)
问题是我从应用程序文件夹中推送到heroku。 假设我的应用程序位于文件夹中。我必须创建一个包含creme文件夹,requirements.txt和Procfile的文件夹。错误是我将需求和Procfile放在creme文件夹中,它适用于localhost但不适用于Heroku。