- frontend/.env.example: Add SEEDER_API_URL - seeder-api/.env.example: Expand with server config and backend URL - job-scraper-multisite/.env.example: New file with scraping config - Update gitignore files to allow .env.example tracking
22 lines
706 B
Text
22 lines
706 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
|
|
|
|
# Vercel Analytics (optional)
|
|
NEXT_PUBLIC_VERCEL_ANALYTICS=false
|
|
|