mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-14 23:10:15 +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.
14 lines
360 B
Plaintext
14 lines
360 B
Plaintext
[program:auth-celeryd]
|
|
command=celery -A alliance_auth worker
|
|
directory=/home/allianceserver/allianceauth
|
|
user=allianceserver
|
|
numprocs=1
|
|
stdout_logfile=/home/allianceserver/allianceauth/log/worker.log
|
|
stderr_logfile=/home/allianceserver/allianceauth/log/worker.log
|
|
autostart=true
|
|
autorestart=true
|
|
startsecs=10
|
|
stopwaitsecs = 600
|
|
killasgroup=true
|
|
priority=1000
|