mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
15 lines
264 B
Bash
Executable File
15 lines
264 B
Bash
Executable File
#!/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 |