Spaces:
Sleeping
Sleeping
File size: 315 Bytes
807b59f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | @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 |