16 lines
267 B
Bash
Executable File
16 lines
267 B
Bash
Executable File
#!/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."
|