PhisDet / start_server.bat
RantoG's picture
Upload 18 files
96b6f71 verified
raw
history blame contribute delete
197 Bytes
@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