| [supervisord] |
| nodaemon=true |
| logfile=/dev/null |
|
|
| [program:ingest] |
| command=/app/bin/run_ingest.sh |
| stdout_logfile=/dev/fd/1 |
| stderr_logfile=/dev/fd/2 |
| stdout_logfile_maxbytes=0 |
| stderr_logfile_maxbytes=0 |
| autorestart=true |
| startretries=4 |
| startsecs=3 |
| stopsignal=TERM |
|
|
| [program:ml] |
| directory=/app/ml-service |
| command=/app/bin/run_ml.sh |
| environment=PYTHONPATH="/app/ml-service" |
| stdout_logfile=/dev/fd/1 |
| stderr_logfile=/dev/fd/2 |
| stdout_logfile_maxbytes=0 |
| stderr_logfile_maxbytes=0 |
| autorestart=true |
| startretries=4 |
| startsecs=3 |
| stopsignal=TERM |
|
|
| [program:api-testing] |
| command=/app/bin/run_api_testing.sh |
| environment=BIND_ADDR="127.0.0.1:9090" |
| stdout_logfile=/dev/fd/1 |
| stderr_logfile=/dev/fd/2 |
| stdout_logfile_maxbytes=0 |
| stderr_logfile_maxbytes=0 |
| autorestart=true |
| startretries=4 |
| startsecs=3 |
| stopsignal=TERM |
|
|
| [program:control-plane] |
| directory=/app/control-plane |
| command=/app/bin/run_control_plane.sh |
| environment=PYTHONPATH="/app/control-plane" |
| stdout_logfile=/dev/fd/1 |
| stderr_logfile=/dev/fd/2 |
| stdout_logfile_maxbytes=0 |
| stderr_logfile_maxbytes=0 |
| autorestart=true |
| startretries=4 |
| startsecs=3 |
| stopsignal=TERM |
|
|