rag / run.bat
Tahasaif3's picture
'changes'
fe10c91
raw
history blame contribute delete
315 Bytes
@echo off
setlocal
REM Navigate to the backend directory
cd backend
REM Activate virtual environment
echo Activating virtual environment...
call venv\Scripts\activate
REM Start the uvicorn server
echo Starting FastAPI application with uvicorn...
uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
endlocal