Add WSGI entry point for the application

This commit is contained in:
ishak jmilou.ishak
2024-11-28 13:16:03 +01:00
parent aca6644c02
commit 048790ec8b

7
src/Python/wsgi.py Normal file
View File

@@ -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