ADD: added team management

This commit is contained in:
hwinkel
2025-11-28 14:31:12 +01:00
parent 3a6c3a86e3
commit aac5a3c21d
14 changed files with 587 additions and 166 deletions

15
start.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Start the frontend application
echo "Starting frontend application..."
cd frontend
npm start &
cd ..
# Start the backend application
echo "Starting backend application..."
cd backend
go run cmd/server/main.go &
cd ..
echo "All applications started."