Spaces:
Running
Running
File size: 439 Bytes
472efd1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | [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
|