mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-24 15:30:44 +03:00
Updated heroku setup
- Heroku's free postgres tier is now "hobby-dev" - pg:backups require a scheduled time - add missing Mailgun API key
This commit is contained in:
parent
f073fb6ab5
commit
b2816c0e94
|
@ -166,8 +166,8 @@ Run these commands to deploy the project to Heroku:
|
|||
|
||||
heroku create --buildpack https://github.com/heroku/heroku-buildpack-python
|
||||
|
||||
heroku addons:create heroku-postgresql:dev
|
||||
heroku pg:backups schedule DATABASE_URL
|
||||
heroku addons:create heroku-postgresql:hobby-dev
|
||||
heroku pg:backups schedule --at '02:00 America/Los_Angeles' DATABASE_URL
|
||||
heroku pg:promote DATABASE_URL
|
||||
|
||||
heroku addons:create mailgun
|
||||
|
@ -181,7 +181,8 @@ Run these commands to deploy the project to Heroku:
|
|||
heroku config:set DJANGO_AWS_STORAGE_BUCKET_NAME=YOUR_AWS_S3_BUCKET_NAME_HERE
|
||||
|
||||
heroku config:set DJANGO_MAILGUN_SERVER_NAME=YOUR_MALGUN_SERVER
|
||||
|
||||
heroku config:set DJANGO_MAILGUN_API_KEY=YOUR_MAILGUN_API_KEY
|
||||
|
||||
git push heroku master
|
||||
heroku run python manage.py migrate
|
||||
heroku run python manage.py check --deploy
|
||||
|
|
Loading…
Reference in New Issue
Block a user