Spaces:
Runtime error
Runtime error
File size: 275 Bytes
840c040 | 1 2 3 4 5 6 7 8 9 10 11 | @echo off
echo Starting Face API server...
cd /d "%~dp0"
if not exist "venv\Scripts\python.exe" (
echo Virtual environment not found. Please run set up first.
pause
exit /b
)
"venv\Scripts\python.exe" -m uvicorn main:app --reload --host 0.0.0.0 --port 8000
pause
|