mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-13 06:20:16 +02:00
Update celery tasks to new style & remove djcelery Vanilla celery + django-celery-beat take over the role of djcelery. Task schedules are consolidated into settings instead of residing in code. Update docs and example supervisor configs.
11 lines
309 B
Plaintext
11 lines
309 B
Plaintext
[program:auth-celerybeat]
|
|
command=celery -A alliance_auth beat
|
|
directory=/home/allianceserver/allianceauth
|
|
user=allianceserver
|
|
stdout_logfile=/home/allianceserver/allianceauth/log/beat.log
|
|
stderr_logfile=/home/allianceserver/allianceauth/log/beat.log
|
|
autostart=true
|
|
autorestart=true
|
|
startsecs=10
|
|
priority=999
|