找不到gunicorn modul django heroku

时间:2018-12-06 03:52:14

标签: python django heroku gunicorn

第一次部署到heroku。我部署了测试应用程序,并顺利进行了迁移。但是,出现以下错误

ModuleNotFoundError: No module named 'djorg2'

我运行了heroku日志--tail,并在这里得到了以下结果

enter image description here

这是我的文件路径的图片

enter image description here

这是我当前的Procfile

web: gunicorn djorg2.wsgi --log-file -

我对在heroku上进行部署有些陌生。有谁知道我的问题可能是什么和/或计数使我朝着正确的方向前进。一个下午的大部分时间里,我一直在努力解决这个问题,但我有点卡住了。

2 个答案:

答案 0 :(得分:0)

web: gunicorn practice.djorg2.wsgi --log-file -

答案 1 :(得分:0)

感谢大家的提示。我觉得这可能是由于文件放置。我重新组织了文件,使所有内容都在我的git repo的根目录下,现在可以正常工作了。

enter image description here

我认为,从现在开始,我会将所有内容放置在其自己的文件位置中,只是为了更井井有条,不要让自己困惑。我确实尝试过

web: gunicorn practice.djorg2.wsgi --log-file -

但是由于某些奇怪的原因,它不起作用。