chatbot3 / run.bat
MuhammadSaad16's picture
Add application file
600f3a7
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