Files
Laca-City/scripts/frontend-only.sh
PhongPham e0e47d57c7 feat: Enhanced CSS animations, improved UI components, and project reorganization
- Enhanced globals.css with comprehensive animation system
- Added advanced map marker animations (GPS, parking)
- Improved button and filter animations with hover effects
- Added new UI components: BookingModal, ParkingDetails, WheelPicker
- Reorganized project structure with better documentation
- Added optimization scripts and improved development workflow
- Updated deployment guides and technical documentation
- Enhanced mobile responsiveness and accessibility support
2025-08-03 07:00:22 +07:00

24 lines
644 B
Bash

#!/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