Files
EpiSupport-Zammad-Scraper/wsgi.py
T
2026-06-29 09:52:02 +02:00

7 lines
204 B
Python

"""Gunicorn-Einstiegspunkt für den Web-Dienst."""
from app.web import app # noqa: F401
if __name__ == "__main__":
from app import config
app.run(host="127.0.0.1", port=config.PORT, debug=True)