Integrate task runner into python tools

This commit is contained in:
ajp_anton
2026-08-08 17:21:50 +00:00
parent f8fb1eed75
commit 56d6194324
22 changed files with 1137 additions and 7 deletions
+17
View File
@@ -0,0 +1,17 @@
"""Production entry point."""
from __future__ import annotations
import os
from waitress import serve
from .web import create_app
if __name__ == "__main__":
serve(
create_app(),
host=os.environ.get("SERVER_MAINTENANCE_HOST", "0.0.0.0"),
port=int(os.environ.get("SERVER_MAINTENANCE_PORT", "8080")),
)