fix: install backend Node.js deps (ws) in start scripts

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

Former-commit-id: 41a7811360
This commit is contained in:
anoracleofra-code
2026-03-10 04:25:53 -06:00
parent dd8485d1b6
commit 5d221c3dc7
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -58,6 +58,9 @@ if %errorlevel% neq 0 (
exit /b 1
)
echo [*] Backend dependencies OK.
echo [*] Installing backend Node.js dependencies...
call npm install --silent
echo [*] Backend Node.js dependencies OK.
cd ..
echo.
+3
View File
@@ -52,6 +52,9 @@ if [ $? -ne 0 ]; then
fi
echo "[*] Backend dependencies OK."
deactivate
echo "[*] Installing backend Node.js dependencies..."
npm install --silent
echo "[*] Backend Node.js dependencies OK."
cd "$SCRIPT_DIR"