mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
23 lines
323 B
Batchfile
23 lines
323 B
Batchfile
@echo off
|
|
cd /d %~dp0
|
|
|
|
:: Prüfen ob Node.js installiert ist
|
|
where node >nul 2>nul
|
|
if %errorlevel% neq 0 (
|
|
echo Node.js ist nicht installiert.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo Node.js gefunden:
|
|
node -v
|
|
|
|
npm install
|
|
if %errorlevel% neq 0 (
|
|
echo npm install fehlgeschlagen.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
npm start
|
|
pause |