9 lines
277 B
Python
9 lines
277 B
Python
"""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()
|