# ============================================================================== # AI Agent Networking Lab (ANL) Unified Single Backend Environment Configuration # ============================================================================== # REQUIRED: Secret Bearer token for mutating REST APIs and /console admin operations # Generate a secure random token (e.g., openssl rand -hex 32) ADMIN_TOKEN=your_secure_admin_bearer_token_here # OPTIONAL: Public API base URL for client-side fetches. # In standard deployment (Go backend serving both static site and API on the same origin), # leave this UNSET or empty to use origin-relative '/api/v1' automatically. # Only specify an absolute URL (e.g., https://api.domain.com/api/v1) for cross-origin setups. NEXT_PUBLIC_API_BASE_URL= # OPTIONAL: Host port mapping for unified container (default: 8080) APP_PORT=8080