first commit

This commit is contained in:
Mateusz Gruszczyński
2025-03-07 22:35:43 +01:00
commit 6bd6284f49
17 changed files with 652 additions and 0 deletions

7
run_waitress.py Normal file
View File

@ -0,0 +1,7 @@
from app import app, db
from waitress import serve
if __name__ == '__main__':
with app.app_context():
db.create_all()
serve(app, host='0.0.0.0', port=8080)