diff --git a/start.bat b/start.bat index e4823c5..e5608bb 100644 --- a/start.bat +++ b/start.bat @@ -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. diff --git a/start.sh b/start.sh index 9ba45a6..1ad8729 100644 --- a/start.sh +++ b/start.sh @@ -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"