Redis – How to schedule a task with Celery that runs after three months and only once
I have created an advertising app in my websilte with django and the Ad model looks like this AdModel(models.Model): starting_date = models.DateField() expiring_date = models.DateField() active = models.BooleanField(default=False) My goal is to create a task using Celery to activate (set…