27 lines
944 B
Text
27 lines
944 B
Text
# =============================================================================
|
|
# GoHorse Jobs Frontend - Environment Variables
|
|
# =============================================================================
|
|
# Copy this file to .env.local and update the values
|
|
|
|
# API Backend URL (just the domain, endpoints already include /api/v1)
|
|
# Examples:
|
|
# Local development: http://localhost:8521
|
|
# Production: https://api.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
|