如何在 Heroku 上的非标准文件夹中将 Procfile 更改为 运行 Gunicorn 进程?
How can I change the Procfile to run the Gunicorn process in a non-standard folder on Heroku?
这是我的文件夹结构:
george-paintings
|
application
|
george_paintings
|
george_paintings
| - wsgi.py
- Procfile
在 procfile 中我指定了 wsgi
web: gunicorn --pythonpath application.george_paintings george_paintings.wsgi
我在将我的项目部署到 Heroku 时出错
ModuleNotFoundError: No module named 'george_paintings'
T 在 procfile 中尝试了不同的路径组合,然后 none 成功了
改变
web: gunicorn --pythonpath application.george_paintings george_paintings.wsgi
至
web: gunicorn --pythonpath application.george_paintings.george_paintings.wsgi
您在文件夹名称之间有一个空白 space。
这是我的文件夹结构:
george-paintings
|
application
|
george_paintings
|
george_paintings
| - wsgi.py
- Procfile
在 procfile 中我指定了 wsgi
web: gunicorn --pythonpath application.george_paintings george_paintings.wsgi
我在将我的项目部署到 Heroku 时出错
ModuleNotFoundError: No module named 'george_paintings'
T 在 procfile 中尝试了不同的路径组合,然后 none 成功了
改变
web: gunicorn --pythonpath application.george_paintings george_paintings.wsgi
至
web: gunicorn --pythonpath application.george_paintings.george_paintings.wsgi
您在文件夹名称之间有一个空白 space。