Spaces:
Building
Building
File size: 380 Bytes
621bbc1 831ae7e 621bbc1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
[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 |