install as service

This commit is contained in:
2026-08-30 12:41:40 +02:00
parent 3224f27f39
commit 2cab3f6c45
8 changed files with 111 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
"""Production entry point using Waitress and config.yaml."""
from waitress import serve
from wsgi import app
if __name__ == "__main__":
serve(
app,
host=app.config["HOST"],
port=app.config["PORT"],
threads=app.config["THREADS"],
)