diff --git a/src/Python/wsgi.py b/src/Python/wsgi.py new file mode 100644 index 0000000..d9c2cef --- /dev/null +++ b/src/Python/wsgi.py @@ -0,0 +1,7 @@ +import sys +import logging + +logging.basicConfig(stream=sys.stderr) +sys.path.insert(0, "/app.py") + +from app import app as application \ No newline at end of file