- Add NEXT_PUBLIC_SCRAPER_API_URL to frontend/.env.example - Re-enable .env* ignore rules in frontend/.gitignore
29 lines
886 B
Text
29 lines
886 B
Text
# =============================================================================
|
|
# GoHorse Jobs Frontend - Environment Variables Example
|
|
# =============================================================================
|
|
# Copy this file to .env.local and update the values
|
|
|
|
# API Backend URL
|
|
# IMPORTANT: Include /api/v1 suffix
|
|
# Local development:
|
|
NEXT_PUBLIC_API_URL=http://localhost:8521/api/v1
|
|
|
|
# Production:
|
|
# NEXT_PUBLIC_API_URL=https://api-dev.gohorsejobs.com/api/v1
|
|
|
|
# Seeder API URL (for admin operations)
|
|
NEXT_PUBLIC_SEEDER_API_URL=http://localhost:3001
|
|
|
|
# Production:
|
|
# NEXT_PUBLIC_SEEDER_API_URL=https://seeder-dev.gohorsejobs.com
|
|
|
|
# Scraper API URL (for importing scraped jobs)
|
|
NEXT_PUBLIC_SCRAPER_API_URL=http://localhost:3002
|
|
|
|
# Production:
|
|
# NEXT_PUBLIC_SCRAPER_API_URL=https://scraper-dev.gohorsejobs.com
|
|
|
|
# Vercel Analytics (optional)
|
|
NEXT_PUBLIC_VERCEL_ANALYTICS=false
|
|
|
|
|