fix cron on start

This commit is contained in:
Mateusz Gruszczyński 2025-02-24 08:35:40 +01:00
parent 05abc1c795
commit 0689e887ea

10
run_waitress.py Normal file
View File

@ -0,0 +1,10 @@
from waitress import serve
from app import app, reschedule_jobs, scheduler
import atexit
with app.app_context():
reschedule_jobs()
scheduler.start()
atexit.register(lambda: scheduler.shutdown())
serve(app, host='0.0.0.0', port=5581)