我是 heroku 和 gunicorn 的新手,所以我不确定它是如何工作的。但我已经做了一些搜索,我想我已经接近部署我的 Django 应用程序(1.5.1)了。所以我知道我需要一个 Procfile
web: gunicorn app.wsgi
因为我的目录有点不同。我无法在根目录中运行 gunicorn
app_project
requirements/
contributors/
app/
app/
settings/
wsgi.py
# Normally Procfile goes here
Procfile
通常 app/ 将是根目录,但我决定以这种方式构建我的文件夹,以将我的 django 应用程序与其他一些东西分开。由于我必须将 Procfile 放在根目录中以便 heroku 识别它,我应该在 Procfile 中放置什么和/或应该在 gunicorn 命令中放置哪些参数?
笔记:
web: gunicorn app.wsgi # won't work because Procfile is in a directory above
# I also want to keep the directories as is
# I also don't want to create a secondary git inside the app folder just for heroku
web: gunicorn app.app.wsgi # won't work because I don't want to convert the folder into a python module