使用 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
而已!