Skip to content

Commit

Permalink
Change default postgresql plan for Heroku to essential-0 (#2440)
Browse files Browse the repository at this point in the history
Also changed fork-based method deployment link.

Co-authored-by: Étienne Beaulé <[email protected]>
  • Loading branch information
DDH13 and tienne-B authored Jun 4, 2024
1 parent 6d4c101 commit 8ec535f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"addons": [
"papertrail",
"rediscloud:30",
"heroku-postgresql:mini",
"heroku-postgresql:essential-0",
{
"plan": "heroku-redis:mini",
"options": {
Expand Down
4 changes: 2 additions & 2 deletions deploy_heroku.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def get_random_secret_key():
help="Git branch to push (defaults to current branch)")

parser.add_argument(
"--pg-plan", "--postgresql-plan", type=str, default="mini",
help="Heroku Postgres plan (default mini)")
"--pg-plan", "--postgresql-plan", type=str, default="essential-0",
help="Heroku Postgres plan (default essential-0)")

parser.add_argument(
"--web-dynos", type=str, default="1",
Expand Down
2 changes: 1 addition & 1 deletion docs/install/heroku.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ In order to use a user-friendly '1-click deployment button', you will need to ma

::

https://heroku.com/deploy?template=https://github.com/YOUR_GITHUB_NAME/YOUR_FORK_NAME/tree/master
https://dashboard.heroku.com/new-app?template=https://github.com/YOUR_GITHUB_NAME/YOUR_FORK_NAME/tree/master

6. In the URL address, replace ``YOUR_GITHUB_NAME`` with your GitHub username (e.g. **JaneSmith**) and replace ``YOUR_FORK_NAME`` with the name of your fork (e.g. **tabbycat**)
7. Hit enter and fill out the details required. After the deployment process completes, you should have a new Tabbycat deployment
Expand Down

0 comments on commit 8ec535f

Please sign in to comment.