首页 >
其它 > 启动github同步到Heroku遇到的坑
- 在根目录中新增requirements.txt,这个文件可以在demo工程中找到。Demo工程地址是https://github.com/heroku/python-getting-started.git, clone这个工程后,拷贝requirements.txt,并且把需要下载的库都写进去
- 从Demo工程中拷贝Procfile文件,修改Procfile文件,将gunicorn gettingstarted.wsgi –log-file – 改为 gunicorn yoursite.wsgi –log-file –
- 在yoursite目录中,需要保证有static文件夹
- 修改setting.py
- Debug=False
- ALLOWED_HOSTS = [“.herokuapp.com“]
最后编辑:
作者:freeman