Automation Part 1

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-03 08:07:43 +00:00
parent 5d96e1a2bd
commit b9774aafa2
23 changed files with 3444 additions and 1 deletions

View File

@@ -38,6 +38,11 @@ app.conf.beat_schedule = {
'task': 'igny8_core.tasks.wordpress_publishing.retry_failed_wordpress_publications',
'schedule': crontab(hour='*/6', minute=30), # Every 6 hours at :30
},
# Automation Tasks
'check-scheduled-automations': {
'task': 'automation.check_scheduled_automations',
'schedule': crontab(minute=0), # Every hour at :00
},
}
@app.task(bind=True, ignore_result=True)