This commit is contained in:
Mateusz Gruszczyński
2025-03-18 12:53:33 +01:00
commit 2a065aba3b
19 changed files with 1617 additions and 0 deletions

7
run_waitress.py Normal file
View File

@@ -0,0 +1,7 @@
from waitress import serve
from app import create_app
app = create_app()
if __name__ == '__main__':
serve(app, host='0.0.0.0', port=5583)