From 048790ec8b376b3f80bf91eef011412e5cc3624b Mon Sep 17 00:00:00 2001 From: "ishak jmilou.ishak" Date: Thu, 28 Nov 2024 13:16:03 +0100 Subject: [PATCH] Add WSGI entry point for the application --- src/Python/wsgi.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/Python/wsgi.py 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