File size: 197 Bytes
96b6f71
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
@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