From c3b6e1a732faab67feee143bb07caa12c6e4af16 Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Mon, 5 Dec 2022 21:15:44 +0530 Subject: [PATCH] fix: update heroku app.json to use premium plans (#5349) * 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 --- app.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/app.json b/app.json index 055235032..6324672fb 100644 --- a/app.json +++ b/app.json @@ -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"