18 lines
439 B
Text
18 lines
439 B
Text
|
[supervisord]
|
||
|
|
||
|
[fcgi-program:uvicorn]
|
||
|
socket=tcp://localhost:8000
|
||
|
command=%(ENV_VENV_DIR)s/bin/uvicorn app.main:app --no-server-header --fd 0
|
||
|
numprocs=2
|
||
|
process_name=uvicorn-%(process_num)d
|
||
|
stdout_logfile=/dev/stdout
|
||
|
stderr_logfile=/dev/stdout
|
||
|
stdout_logfile_maxbytes=0
|
||
|
|
||
|
[program:worker]
|
||
|
command=%(ENV_VENV_DIR)s/bin/inv process-outgoing-activities
|
||
|
numproc=1
|
||
|
stdout_logfile=/dev/stdout
|
||
|
stderr_logfile=/dev/stdout
|
||
|
stdout_logfile_maxbytes=0
|