我正在尝试使用 Django & Heroku 构建一个应用程序。我正在按照本教程中的步骤进行操作:https ://devcenter.heroku.com/articles/django
这是我的步骤:
mkdir hellodjango && cd hellodjango
virtualenv venv --distribute
source venv/bin/activate
pip install django-toolbelt
django-admin.py startproject hellodjango .
然后我被要求创建一个所谓的“Procfile”:
web: gunicorn hellodjango.wsgi
并让它“位于我的项目目录的根目录”。我该怎么做(如果这似乎是一个非常简单的问题,请原谅我;我对所有编程都不熟悉,并且发现学习曲线非常陡峭)。