logan-codes's picture
patch: docker fix
d80b103
raw
history blame contribute delete
271 Bytes
#!/bin/bash
# Start FastAPI server in the background
echo "Starting FastAPI server..."
python -m uvicorn app.main:app --host 0.0.0.0 --port 8000 &
# Start Streamlit UI
echo "Starting Streamlit UI..."
streamlit run ui/Home.py --server.port 7860 --server.address 0.0.0.0