Spaces:
Sleeping
Sleeping
File size: 460 Bytes
94673bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
[supervisord]
nodaemon=true
[program:fastapi]
command=uvicorn app:app --host 0.0.0.0 --port 8501
directory=/app
autostart=true
autorestart=true
stderr_logfile=/var/log/fastapi.err.log
stdout_logfile=/var/log/fastapi.out.log
[program:streamlit]
command=streamlit run streamlit_app.py --server.port=8502 --server.address=0.0.0.0
directory=/app
autostart=true
autorestart=true
stderr_logfile=/var/log/streamlit.err.log
stdout_logfile=/var/log/streamlit.out.log
|