hosts_app/run_waitress.py
Mateusz Gruszczyński ecc979b4ac refactor
2025-02-24 23:13:39 +01:00

6 lines
128 B
Python

from waitress import serve
from app import app
if __name__ == "__main__":
serve(app, listen='*:5580', threads=4, ident="")