#!/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."