mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-22 17:28:55 +00:00
10 lines
209 B
Python
10 lines
209 B
Python
from datetime import timedelta
|
|
|
|
CELERYBEAT_SCHEDULE = {
|
|
'add-every-30-seconds': {
|
|
'task': 'spa.tasks.play_pending_audio',
|
|
'schedule': timedelta(seconds=10)
|
|
},
|
|
}
|
|
|
|
CELERY_TIMEZONE = 'UTC' |