guiBackend / gui /start_backend.ps1
BrianLov's picture
Upload folder using huggingface_hub (part 10)
84cd834 verified
Raw
History Blame Contribute Delete
236 Bytes
# Run from project root: .\gui\start_backend.ps1
Write-Host "Starting FastAPI backend on http://localhost:8000 ..." -ForegroundColor Cyan
& ".\venv\Scripts\python.exe" -m uvicorn gui.backend.main:app --host 0.0.0.0 --port 8000 --reload