fix cron on start
This commit is contained in:
parent
05abc1c795
commit
0689e887ea
10
run_waitress.py
Normal file
10
run_waitress.py
Normal 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)
|
Loading…
x
Reference in New Issue
Block a user