ADD: added team management
This commit is contained in:
15
start.sh
Executable file
15
start.sh
Executable 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."
|
||||
Reference in New Issue
Block a user