Cron-based scheduling #8
RealOrangeOne
started this conversation in
Ideas
Replies: 2 comments 5 replies
-
I've mentioned this in issue #22. I think this is a vital feature for a 1.0 release. Even the database backend for django-tasks itself needs it, for expiring old tasks from the database. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Any thought to if scheduling should be possibly database backed? Similar to how django-celery-beat works? Or just in code registration? One thing I would like would be a syntax similar to Laravel, it just reads better compared to cron syntax: ScheduleTask("tasks.send_email").daily().weekdays().at("01:30") |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It's currently possible to execute a task after a given time with
run_after
. However, it's not possible to schedule a task "At 3am every day", for example.Beta Was this translation helpful? Give feedback.
All reactions