mirror of
https://github.com/LukeHagar/pypistats.org.git
synced 2025-12-06 04:21:09 +00:00
32 lines
686 B
Plaintext
32 lines
686 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
|
|
[program:redis]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
command=redis-server
|
|
|
|
[program:pypistats]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
command=bash -c "scripts/run_flask.sh"
|
|
|
|
[program:celery-worker]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
user=root
|
|
command=bash -c "scripts/run_celery.sh"
|
|
|
|
[program:celery-beat]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stdout
|
|
stderr_logfile_maxbytes=0
|
|
command=bash -c "scripts/run_beat.sh"
|