From a33f142b4b17d7539134ca14aff27bc1867a09fe Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Sun, 2 Oct 2022 16:33:56 -0400 Subject: [PATCH] Update prod undercover -> app --- start | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start b/start index 3f6ecc6..d85621d 100755 --- a/start +++ b/start @@ -15,7 +15,7 @@ fi if [[ "$1" == "prod" ]]; then echo "Starting gunicorn production server..." - gunicorn -b localhost:8080 "undercover:create_app()" + gunicorn -b localhost:8080 "app:create_app()" else echo "Starting local dev server..." export FLASK_APP=app