From 38b5854e8d8eac3aa62d6c53a5d9dee9c001cc36 Mon Sep 17 00:00:00 2001 From: Galimede Date: Tue, 5 Jan 2021 15:12:33 +0100 Subject: [PATCH] :wrench: Add command to up db when deploying to heroku --- Procfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Procfile b/Procfile index 60df632..a96c523 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: gunicorn autoapp:app -b 0.0.0.0:$PORT -w 3 +web: flask db upgrade;gunicorn autoapp:app -b 0.0.0.0:$PORT -w 3