# AgentLens Cloud — Environment Variables # Copy to .env and edit as needed: cp .env.example .env # --- Database --- DATABASE_URL=postgresql://agentlens:agentlens@postgres:5432/agentlens REDIS_URL=redis://redis:6379 STORAGE_BACKEND=postgres # postgres | sqlite # --- Auth --- AUTH_DISABLED=false # Set to true only for local development JWT_SECRET= # Required when AUTH_DISABLED=false # --- Server --- NODE_ENV=development # development | production | staging PORT=3400 BACKPRESSURE_THRESHOLD=1000 # Max queued events before back-pressure # --- Audit --- AGENTLENS_AUDIT_SIGNING_KEY= # HMAC-SHA256 key for signing audit verification reports