Files
service_netatmo/serve.py
T

15 lines
275 B
Python
Raw Normal View History

2026-08-30 12:41:40 +02:00
"""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"],
)