@echo off echo Installing dependencies... pip install -r requirements.txt pip install uvicorn echo Starting FastAPI server... python -m uvicorn app:app --reload --host 127.0.0.1 --port 8000 pause