Project_Manager/wsgi.py
2026-06-26 18:21:22 +02:00

12 lines
231 B
Python

"""WSGI-Einstiegspunkt für Produktion (gunicorn).
Aufruf z.B.: gunicorn --bind 127.0.0.1:8000 wsgi:app
"""
from dotenv import load_dotenv
load_dotenv()
from app import create_app # noqa: E402
app = create_app("production")