#!/bin/bash # Start both frontend and backend concurrently trap 'kill 0' EXIT echo "Starting backend server..." cd server && npm run dev & echo "Starting frontend client..." cd client && npm run dev & wait