Files
you-music/dev-frontend.sh
T
2025-10-30 14:45:41 +11:00

30 lines
561 B
Bash
Executable File

#!/bin/bash
# Start Frontend Development Server
echo "🎨 Starting Frontend Development Server..."
echo ""
cd frontend
# Check if node_modules exists
if [ ! -d "node_modules" ]; then
echo "❌ Dependencies not installed. Run ./dev-setup.sh first"
exit 1
fi
# Check if .env exists
if [ ! -f ".env" ]; then
echo "⚠️ Creating .env from .env.example..."
cp .env.example .env
fi
echo "✅ Frontend starting on http://localhost:3000"
echo "🔄 Hot reload enabled"
echo ""
echo "Press Ctrl+C to stop"
echo ""
# Run dev server
npm run dev