erste Fassung von Client und Server rein

This commit is contained in:
mistangl
2026-04-16 13:34:05 +02:00
parent f44949f0af
commit 5b38af78f0
19 changed files with 589 additions and 0 deletions

18
bin/install_npm.bat Normal file
View File

@@ -0,0 +1,18 @@
@echo off
REM ================================================================
REM PLANTPLAN - Node.js Packages fuer Client installieren
REM ================================================================
REM Fuehrt npm install im client/ Verzeichnis aus
REM ================================================================
call "%~dp0setenv.bat"
if not exist "%PV_CLIENT%\node_modules" (
echo Installiere Node.js Packages fuer Client...
cd /d "%PV_CLIENT%"
npm install
echo Erfolgreich.
) else (
echo Node.js Packages bereits installiert!
echo Zum Aktualisieren: cd client ^& npm install
)