Health-Insurance-Copilot / run_backend.sh
Nagendravarma
Deployable release for Hugging Face Spaces with LFS database tracking
ad8c65e
Raw
History Blame Contribute Delete
182 Bytes
#!/bin/bash
# Start FastAPI Backend
echo "🚀 Starting Health Insurance RAG Backend..."
export PYTHONPATH=$PYTHONPATH:.
uvicorn backend.main:app --host 0.0.0.0 --port 8000 --reload