Skip to content

Commit

Permalink
fix: update heroku app.json to use premium plans (#5349)
Browse files Browse the repository at this point in the history
* fix: update heroku app.json to use premium plans

Use premium/paid dynos and addons as Heroku is set to deprecate free dynos/addons.

* fix: set default stack to heroku-20

* chore: update heroku app.json to use new dyno types

web and worker to use basic dynos
redis and postgres to use mini
  • Loading branch information
vishnu-narayanan committed Dec 5, 2022
1 parent c9cae01 commit c3b6e1a
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions app.json
Expand Up @@ -41,16 +41,24 @@
"formation": {
"web": {
"quantity": 1,
"size": "FREE"
"size": "basic"
},
"worker": {
"quantity": 1,
"size": "FREE"
"size": "basic"
}
},
"stack": "heroku-20",
"image": "heroku/ruby",
"addons": [ "heroku-redis", "heroku-postgresql"],
"addons": [
{
"plan": "heroku-redis:mini"
},
{
"plan": "heroku-postgresql:mini"
}
],
"stack": "heroku-20",
"buildpacks": [
{
"url": "heroku/ruby"
Expand Down

0 comments on commit c3b6e1a

Please sign in to comment.