This commit is contained in:
root
2025-09-24 09:18:55 +00:00
parent a9f9fecb26
commit cab8139815
8 changed files with 137 additions and 2 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/bin/bash
set -e
echo "🚀 Starte StackPulse Dev-Umgebung..."
cd backend
npm install
npm start &
BACK_PID=$!
cd ..
cd frontend
npm install
npm run dev &
FRONT_PID=$!
cd ..
echo ""
echo "✅ StackPulse läuft lokal:"
echo "Frontend: http://localhost:5173"
echo "Backend: http://localhost:3300"
echo "Beenden mit STRG+C"
wait $BACK_PID $FRONT_PID