12 lines
231 B
Python
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")
|