Update start scripts

This commit is contained in:
Orfeo Terkuci
2026-03-24 20:04:10 +01:00
parent 212b1051a7
commit 466cc51bc3
2 changed files with 15 additions and 4 deletions
+2 -2
View File
@@ -45,7 +45,7 @@ echo [*] Setting up backend...
cd backend
if not exist "venv\" (
echo [*] Creating Python virtual environment...
python -m venv venv
uv venv
if %errorlevel% neq 0 (
echo [!] ERROR: Failed to create virtual environment.
pause
@@ -54,7 +54,7 @@ if not exist "venv\" (
)
call venv\Scripts\activate.bat
echo [*] Installing Python dependencies (this may take a minute)...
pip install -q -r requirements.txt
uv sync --frozen
if %errorlevel% neq 0 (
echo.
echo [!] ERROR: pip install failed. See errors above.