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