HindiBPE / supervisord.conf
Vibi007's picture
supervisor
831ae7e
raw
history blame contribute delete
380 Bytes
[supervisord]
nodaemon=true
[program:fastapi]
command=uvicorn main:app --host 0.0.0.0 --port 8000
directory=/app/backend
autostart=true
autorestart=true
stderr_logfile=/var/log/supervisor/fastapi.err.log
stdout_logfile=/var/log/supervisor/fastapi.out.log
[program:react]
command=serve -s /app/frontend/build -l 7860
directory=/app/frontend/build
autostart=true
autorestart=true