VedaMD-Backend-v2 / start.sh
sniro23's picture
VedaMD Enhanced: Clean deployment with 5x Enhanced Medical RAG System
01f0120
raw
history blame contribute delete
193 Bytes
#!/bin/bash
# Start the FastAPI backend
uvicorn src.api.main:app --host 0.0.0.0 --port 8000 &
# Wait a bit for the backend to start
sleep 5
# Start the Next.js frontend
npm start -- -p 3000