[supervisord] nodaemon=true user=root logfile=/dev/null logfile_maxbytes=0 [program:auth_service] command=uvicorn auth_service.app.main:app --host 0.0.0.0 --port 8001 stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 redirect_stderr=true autorestart=true [program:task_service] command=uvicorn task_service.app.main:app --host 0.0.0.0 --port 8002 stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 redirect_stderr=true autorestart=true