first commit

This commit is contained in:
2026-06-29 09:52:02 +02:00
commit da2f7c3c86
31 changed files with 2306 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
"""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)