diff --git a/wsgi.py b/wsgi.py index c875d4269..dd2db3d10 100644 --- a/wsgi.py +++ b/wsgi.py @@ -1,4 +1,3 @@ -from app import create_app from credstash import getAllSecrets import os @@ -17,6 +16,8 @@ from config import configs os.environ['NOTIFY_ADMIN_ENVIRONMENT'] = configs[environment] +from app import create_app + application = create_app() if __name__ == "__main__":