@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