Files
laca-website/scripts/frontend-only.sh
PhongPham 51f2505839 🚀 Complete Laca City Website with VPS Deployment
- Added complete Next.js frontend with responsive design
- Added NestJS backend with PostgreSQL and Redis
- Added comprehensive VPS deployment script (vps-deploy.sh)
- Added deployment guide and documentation
- Added all assets and static files
- Configured SSL, Nginx, PM2, and monitoring
- Ready for production deployment on any VPS
2025-08-12 07:06:15 +07:00

24 lines
644 B
Bash
Executable File

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