#!/bin/bash # CHORUS Services Website Development Script # Starts the Next.js development server with proper environment echo "🎵 Starting CHORUS Services Website Development Server..." echo "🔧 Installing dependencies if needed..." # Check if node_modules exists, if not install dependencies if [ ! -d "node_modules" ]; then echo "📦 Installing dependencies..." npm install fi echo "🚀 Starting development server..." echo "📍 URL: http://localhost:3000" echo "🎨 Theme: CHORUS Dark (Apple-inspired)" echo "⚡ Components: WHOOSH, BZZZ, SLURP, COOEE" echo "" echo "Press Ctrl+C to stop the server" echo "" npm run dev