27 lines
990 B
Plaintext
27 lines
990 B
Plaintext
# GridPilot Website Environment Variables
|
|
|
|
# Application Mode
|
|
# Controls whether the site is in pre-launch or alpha mode
|
|
# Valid values: "pre-launch" | "alpha"
|
|
# Default: "pre-launch" (if not set)
|
|
# Note: NEXT_PUBLIC_ prefix exposes this to both server and browser
|
|
NEXT_PUBLIC_GRIDPILOT_MODE=pre-launch
|
|
|
|
# Vercel KV (for email signups and rate limiting)
|
|
# Get these from: https://vercel.com/dashboard -> Storage -> KV
|
|
# OPTIONAL in development (uses in-memory fallback)
|
|
# REQUIRED in production for persistent data
|
|
# KV_REST_API_URL=your_kv_rest_api_url_here
|
|
# KV_REST_API_TOKEN=your_kv_rest_api_token_here
|
|
|
|
# Site URL (for metadata and OG tags)
|
|
NEXT_PUBLIC_SITE_URL=https://gridpilot.com
|
|
|
|
# Discord Community
|
|
# Discord invite URL for the community CTA
|
|
# Get this from: Discord Server Settings -> Invites -> Create Invite
|
|
# Example: https://discord.gg/your-invite-code
|
|
NEXT_PUBLIC_DISCORD_URL=https://discord.gg/your-invite-code
|
|
|
|
# Example for alpha mode:
|
|
# NEXT_PUBLIC_GRIDPILOT_MODE=alpha |