From a682a13cac4d2fcaf399963d2271936dd96229e3 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Thu, 5 Jul 2018 22:16:39 -0500 Subject: [PATCH] Address renamed atheneum application --- server/.env | 2 +- server/entrypoint.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/server/.env b/server/.env index 62fbcfb..b8c30d7 100644 --- a/server/.env +++ b/server/.env @@ -1 +1 @@ -FLASK_APP=atheneum \ No newline at end of file +FLASK_APP=atheneum:atheneum \ No newline at end of file diff --git a/server/entrypoint.sh b/server/entrypoint.sh index 033507e..6629f74 100755 --- a/server/entrypoint.sh +++ b/server/entrypoint.sh @@ -1,10 +1,10 @@ #!/usr/bin/env bash # Migrate the Database -FLASK_APP=atheneum:app flask db upgrade +FLASK_APP=atheneum:atheneum flask db upgrade # Make sure an administrator is registered python manage.py user register-admin # Start the application -gunicorn -b 0.0.0.0:8080 atheneum:app \ No newline at end of file +gunicorn -b 0.0.0.0:8080 atheneum:atheneum \ No newline at end of file