#!/bin/bash # CHORUS Blog Development Server # Start the Next.js development server for the blog set -e echo "🎵 Starting CHORUS Blog development server..." # Check if we're in the right directory if [ ! -f "package.json" ]; then echo "❌ Error: package.json not found. Are you in the blog directory?" exit 1 fi # Install dependencies if node_modules doesn't exist if [ ! -d "node_modules" ]; then echo "📦 Installing dependencies..." npm install fi # Start the development server echo "🚀 Starting Next.js development server on port 3025..." echo "📝 Blog will be available at: http://localhost:3025" echo "🌍 Production URL will be: https://blog.chorus.services" echo "" echo "Press Ctrl+C to stop the server" echo "" npm run dev