mirror of
https://github.com/wahyd4/you-music.git
synced 2026-08-09 05:06:44 +10:00
30 lines
561 B
Bash
Executable File
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
|