hosts_app/run_waitress.py
Mateusz Gruszczyński 99f117bf69 fix waitress
2025-03-04 11:28:24 +01:00

7 lines
194 B
Python

from waitress import serve
from app import app, scheduler
if __name__ == "__main__":
if not scheduler.running:
scheduler.start()
serve(app, listen="*:5580", threads=4, ident="")