#!/bin/bash # 🎨 Frontend Only Start Script echo "🎨 Starting Smart Parking Finder Frontend..." # Navigate to frontend directory (go back one level since we're in scripts folder) cd "$(dirname "$0")/../frontend" # Check dependencies if [ ! -d "node_modules" ]; then echo "📦 Installing dependencies..." npm install fi echo "🚀 Starting Next.js development server..." echo "🌐 Frontend will run on: http://localhost:3000" echo "" echo "⚠️ Note: Backend is not started. Some features may not work." echo "💡 To start backend, open new terminal and run:" echo " cd backend && npm run start:dev" echo "" npm run dev