CP_EHRENAMT/wsgi.py
2026-06-25 18:58:44 +02:00

9 lines
277 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""WSGI-Entrypoint für die Produktion (gunicorn wsgi:app).
Kein debug, keine Reloader-Logik das macht der Prozess-Manager (systemd).
Geheimnisse kommen aus der Umgebung (CP_ENV=production, SECRET_KEY), siehe DEPLOY.md.
"""
from app import create_app
app = create_app()