From 4cf3399ae9bfd0a3de763165d1473f36c6d143b9 Mon Sep 17 00:00:00 2001 From: David Mendez Date: Wed, 19 Aug 2020 15:45:12 -0500 Subject: [PATCH] add wsgi module --- wsgi.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 wsgi.py diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..662f2a0 --- /dev/null +++ b/wsgi.py @@ -0,0 +1,6 @@ +""" +WSGI config for the ES Subset Generator API Server. +""" +from app import create_app + +FLASK_APP = create_app() -- GitLab