Review-RAG / run.sh
HariHaran9597
Initial commit
1d70196
raw
history blame contribute delete
297 Bytes
#!/bin/bash
# Start the FastAPI backend on port 8000 in the background
uvicorn api.main:app --host 0.0.0.0 --port 8000 &
# Start the Streamlit frontend on port 7860 (Hugging Face Default) in the foreground
python -m streamlit run app/streamlit_app.py --server.port 7860 --server.address 0.0.0.0