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,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