mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-01-24 00:04:13 +03:00
Update deployment-on-heroku.rst (#5383)
This option is now longer valid ``` $ heroku addons:create heroku-postgresql:mini › Warning: heroku update available from 8.11.5 to 9.2.1. Creating heroku-postgresql:mini on ⬢ location-tracker... ! ▸ We tried to create heroku-postgresql:mini, but received an error from the add-on provider. Try the request again, or log a support ticket and include ▸ this message: The mini plan has reached end-of-life. You can try again with a valid plan. See the available plans with: heroku addons:plans ▸ heroku-postgresql. ``` The next cheapest heroku option is "essentials-0" ``` $ heroku addons:create heroku-postgresql:essential-0 › Warning: heroku update available from 8.11.5 to 9.2.1. Creating heroku-postgresql:essential-0 on ⬢ location-tracker... ~$0.007/hour (max $5/month) Database should be available soon postgresql-silhouetted-14783 is being created in the background. The app will restart when complete... Use heroku addons:info postgresql-silhouetted-14783 to check creation progress Use heroku addons:docs heroku-postgresql to view documentation ``` documentation: https://elements.heroku.com/addons/heroku-postgresql
This commit is contained in:
parent
6f15595e85
commit
caae3ce205
|
@ -12,7 +12,8 @@ Run these commands to deploy the project to Heroku:
|
|||
|
||||
heroku create --buildpack heroku/python
|
||||
|
||||
heroku addons:create heroku-postgresql:mini
|
||||
# Note: this is not a free plan
|
||||
heroku addons:create heroku-postgresql:essential-0
|
||||
# On Windows use double quotes for the time zone, e.g.
|
||||
# heroku pg:backups schedule --at "02:00 America/Los_Angeles" DATABASE_URL
|
||||
heroku pg:backups schedule --at '02:00 America/Los_Angeles' DATABASE_URL
|
||||
|
|
Loading…
Reference in New Issue
Block a user