codeSentry / codesentry-frontend /start_backend.bat
YashashviAlva's picture
Initial commit for HF Spaces deploy
7b4f5dd
Raw
History Blame Contribute Delete
140 Bytes
@echo off
echo Starting CodeSentry Backend...
cd /d "%~dp0backend"
pip install -r requirements.txt -q
uvicorn main:app --reload --port 8000