full stack second commit

This commit is contained in:
Leon Bösche
2025-12-18 00:11:30 +01:00
parent b35adc3d06
commit 87ee5f2ae3
16 changed files with 472 additions and 99 deletions

22
scripts/dev-all.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
set -e
cd "$(dirname "$0")/.."
echo "Starting supporting services with Docker Compose..."
docker-compose up -d db nextcloud collabora
echo "Starting backend..."
./scripts/dev-backend.sh &
BACKEND_PID=$!
echo "Starting frontend..."
./scripts/dev-frontend.sh &
FRONTEND_PID=$!
echo "All services started. Press Ctrl+C to stop."
trap "kill $BACKEND_PID $FRONTEND_PID; docker-compose down" INT
wait