diff --git a/run_waitress.py b/run_waitress.py new file mode 100644 index 0000000..b520293 --- /dev/null +++ b/run_waitress.py @@ -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)