zbiorki_app/run_waitress.py
Mateusz Gruszczyński 6bd6284f49 first commit
2025-03-07 22:35:43 +01:00

8 lines
173 B
Python

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)