- Update frontend/.gitignore to allow .env.example - Create frontend/.env.example with correct API_URL format (/api/v1 suffix) - Document production URL: https://api-dev.gohorsejobs.com/api/v1
15 lines
536 B
Text
15 lines
536 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
|
|
|
|
# Vercel Analytics (optional)
|
|
NEXT_PUBLIC_VERCEL_ANALYTICS=false
|