mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
This change replaces our custom `scheduler.py` script with the `rqscheduler` command, allowing us to run the RQ scheduler as a separate, low-memory process, by avoiding the need to maintain the Python app in memory. * Remove `scheduler.py` script. * Move initialization of scheduled tasks to `worker.py`. * Update `docker/init_scripts/init` to start the `rqscheduler` command instead of the custom script. * Fix scheduled tasks' `func` paths to the new project structure. * Temporarily use a fork of `rq-scheduler` to support username and SSL settings in the `rqscheduler` command.