使用 Heroku Django 入门模板
如果你计划在 Heroku 上托管你的 Django 网站,你可以使用 Heroku Django 入门模板启动你的项目:
django-admin.py startproject --template=https://github.com/heroku/heroku-django-template/archive/master.zip --name=Procfile YourProjectName
它具有针对静态文件,数据库设置,Gunicorn 等的生产就绪配置以及通过 WhiteNoise 对 Django 的静态文件服务功能的增强。这将节省你的时间,它已准备好在 Heroku 上托管,只需在此模板的顶部构建你的网站
要在 Heroku 上部署此模板:
git init
git add -A
git commit -m "Initial commit"
heroku create
git push heroku master
heroku run python manage.py migrate
而已!