From 09e338970dbbc2fb0d13ca1cae73b17e510147a2 Mon Sep 17 00:00:00 2001 From: Syed Ali Shahbaz <52925846+alishaz-polymath@users.noreply.github.com> Date: Sun, 5 Feb 2023 20:20:04 +0530 Subject: [PATCH] Updates heroku deployment template (#6879) --- app.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/app.json b/app.json index 7776063fee..5180797014 100644 --- a/app.json +++ b/app.json @@ -6,7 +6,7 @@ "keywords": ["react", "typescript", "node", "nextjs", "prisma", "postgres", "trpc"], "addons": [ { - "plan": "heroku-postgresql:hobby-dev" + "plan": "heroku-postgresql:mini" } ], "env": { @@ -43,15 +43,18 @@ }, "SENDGRID_API_KEY": { "description": "Sendgrid api key. Used for email reminders in workflows", - "value": "" + "value": "", + "required": false }, "SENDGRID_SYNC_API_KEY": { "description": "Sendgrid internal sync service", - "value": "" + "value": "", + "required": false }, "SENDGRID_EMAIL": { "description": "Sendgrid email. Used for email reminders in workflows", - "value": "" + "value": "", + "required": false }, "EMAIL_FROM": { "description": "Configures the global From: header whilst sending emails",