Dev #2

Merged
Mboehmlaender merged 25 commits from dev into master 2025-09-25 09:27:00 +00:00
Showing only changes of commit 2a18c46a7d - Show all commits
-24
View File
@@ -1,24 +0,0 @@
#!/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