# ============================================================================= # GoHorse Jobs Frontend - Environment Variables # ============================================================================= # Copy this file to .env.local and update the values # API Backend URL # ⚠️ IMPORTANT: Do NOT include /api/v1 - endpoints already have this prefix! # ❌ Wrong: https://api-dev2.gohorsejobs.com/api/v1 # ✅ Correct: https://api-dev2.gohorsejobs.com NEXT_PUBLIC_API_URL=http://localhost:8521 # Backoffice API URL (NestJS backend for Stripe, admin dashboard) # Examples: # Local: http://localhost:3001 # Production: https://backoffice.gohorsejobs.com NEXT_PUBLIC_BACKOFFICE_URL=http://localhost:3001 # Seeder API URL (for admin operations) NEXT_PUBLIC_SEEDER_API_URL=http://localhost:3002 # Scraper API URL (for importing scraped jobs) NEXT_PUBLIC_SCRAPER_API_URL=http://localhost:3003 # Vercel Analytics (optional) NEXT_PUBLIC_VERCEL_ANALYTICS=false