mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
Add start scripts for Windows and Unix environments that checks if node is installed, installs dependencys and starts the programm
This commit is contained in:
@@ -0,0 +1,23 @@
|
|||||||
|
@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
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Prüfen ob Node.js installiert ist
|
||||||
|
if ! command -v node >/dev/null 2>&1; then
|
||||||
|
echo "Node.js ist nicht installiert."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Node.js gefunden: $(node -v)"
|
||||||
|
|
||||||
|
# Abhängigkeiten installieren
|
||||||
|
npm install || exit 1
|
||||||
|
|
||||||
|
# Projekt starten
|
||||||
|
npm start
|
||||||
Reference in New Issue
Block a user