22 lines
1.1 KiB
Bash
22 lines
1.1 KiB
Bash
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# meSEO — Production Environment
|
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
# Safe to commit — no secrets here.
|
|
# Real secrets are set in the hosting provider (Vercel, Railway, etc.).
|
|
|
|
MESEO_ENV=production
|
|
|
|
# These are overridden by the hosting provider's environment variables.
|
|
# Listed here as documentation of what's needed.
|
|
|
|
# NEXT_PUBLIC_APP_URL=https://app.meseo.io
|
|
# NEXT_PUBLIC_API_URL=https://app.meseo.io/api
|
|
# NEXT_PUBLIC_COLLECT_ENDPOINT=https://app.meseo.io/api/collect
|
|
# NEXT_PUBLIC_TRACKER_SCRIPT_URL=https://app.meseo.io/t.js
|
|
|
|
# Production feature flags
|
|
FEATURE_AI_AVATAR=true
|
|
FEATURE_SITE_TAG=true
|
|
FEATURE_BILLING=true
|
|
DEBUG_MODE=false
|