Files
thrilltrack-explorer/.env.example

38 lines
1.6 KiB
Plaintext

# Django API Configuration (REQUIRED)
# Base URL for Django backend API endpoints
# Development: Use local Django server
# Production: Use your production API domain (e.g., https://api.thrillwiki.com/v1)
NEXT_PUBLIC_DJANGO_API_URL=http://localhost:8000/api/v1
# Cloudflare Images Configuration (REQUIRED)
# Your CloudFlare account ID for image delivery
NEXT_PUBLIC_CLOUDFLARE_ACCOUNT_ID=
# CloudFlare Images base URL (REQUIRED)
# Primary: https://cdn.thrillwiki.com (custom CDN domain - simpler URL structure)
# Alternative: https://imagedelivery.net (CloudFlare default)
# Image URL structure: {base_url}/images/{image-id}/{variant-id}
NEXT_PUBLIC_CLOUDFLARE_IMAGE_URL=https://cdn.thrillwiki.com
# Cloudflare Turnstile CAPTCHA (OPTIONAL)
# Get your site key from: https://dash.cloudflare.com/turnstile
# Test keys for development:
# - Visible test key (always passes): 1x00000000000000000000AA
# - Invisible test key (always passes): 2x00000000000000000000AB
# - Visible test key (always fails): 3x00000000000000000000FF
NEXT_PUBLIC_TURNSTILE_SITE_KEY=
# CAPTCHA Bypass Control (Development/Preview Only)
# Set to 'true' to bypass CAPTCHA verification during authentication
# MUST be 'false' or unset in production for security
NEXT_PUBLIC_ALLOW_CAPTCHA_BYPASS=false
# Novu Configuration (OPTIONAL - will be migrated)
# For Novu Cloud, use these defaults:
# - Socket URL: wss://ws.novu.co
# - API URL: https://api.novu.co
# For self-hosted Novu, replace with your instance URLs
NEXT_PUBLIC_NOVU_APPLICATION_IDENTIFIER=
NEXT_PUBLIC_NOVU_SOCKET_URL=wss://ws.novu.co
NEXT_PUBLIC_NOVU_API_URL=https://api.novu.co