This commit is contained in:
Mateusz Gruszczyński 2025-02-24 23:13:39 +01:00
parent 7697fed0cb
commit ecc979b4ac

5
run_waitress.py Normal file
View File

@ -0,0 +1,5 @@
from waitress import serve
from app import app
if __name__ == "__main__":
serve(app, listen='*:5580', threads=4, ident="")