Spaces:
Sleeping
Sleeping
File size: 167 Bytes
020ff75 |
1 2 3 4 5 6 7 |
#!/bin/bash
# Start FastAPI
uvicorn app:app --host 0.0.0.0 --port 8501 &
# Start Streamlit
streamlit run streamlit_app.py --server.port=8502 --server.address=0.0.0.0 |