mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 02:43:14 +08:00
19 lines
699 B
INI
19 lines
699 B
INI
[program:celery-worker]
|
|
command=/root/.virtualenvs/sandboxMP/bin/celery worker -A sandboxMP -l INFO
|
|
directory=/opt/app/sandboxMP
|
|
environment=PATH="/root/.virtualenvs/sandboxMP/bin/"
|
|
stdout_logfile=/opt/app/sandboxMP/slogs/celery_worker.log
|
|
stderr_logfile=/opt/app/sandboxMP/slogs/celery_worker.log
|
|
autostart=true
|
|
autorestart=true
|
|
priority=901
|
|
|
|
[program:celery-flower]
|
|
command=/root/.virtualenvs/sandboxMP/bin/celery flower --broker=redis://localhost:6379/0
|
|
directory=/opt/app/sandboxMP
|
|
environment=PATH="/root/.virtualenvs/sandboxMP/bin/"
|
|
stdout_logfile=/opt/app/sandboxMP/slogs/celery_flower.log
|
|
stderr_logfile=/opt/app/sandboxMP/slogs/celery_flower.log
|
|
autostart=true
|
|
autorestart=true
|
|
priority=900 |