# ─────────────────────────────────────────────────────────────────────────
# WHAT BELONGS IN THIS FILE — and what does NOT
#
# This file is for the DEPLOYMENT'S OWN identity and its model keys. That is
# all. Provider credentials do NOT live here.
#
#   HERE, in .env
#     LEAFMESH_LICENSE_KEY, LEAFMESH_ENV_TOKEN
#     the ports, REDIS_* / Postgres  (the store the vault itself lives in)
#     your model provider key(s): OPENAI_API_KEY / ANTHROPIC_API_KEY /
#       GOOGLE_API_KEY …  (these are read from the environment as the mesh
#       starts, so they must be here — the vault is read too late for them)
#
#   NOT HERE — in the VAULT, added on Studio's Infrastructure page
#     every channel credential  (Slack bot_token / signing_secret / app_token,
#       Teams, Discord, Cliq, WhatsApp, Email)
#     every connector credential (MCP, Zapier, Composio, n8n, custom)
#     Config then names it:  connection: "slack-workspace"
#
# Why it matters: since 2.4.180 the mesh REFUSES TO BOOT if it finds a
# provider credential written into config — and `${ENV_VAR}` does not help,
# because substitution happens before the check runs, so the check sees the
# token itself. `connection:` is the only path that works.
#
# Note: a value is EMPTY here, never a comment. `KEY=   # explanation` is read
# by python-dotenv as the COMMENT being the value.
# ─────────────────────────────────────────────────────────────────────────

# {{project_name}} — environment
LEAFMESH_LICENSE_KEY=
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
PAGER_WEBHOOK=
# HITL notify endpoint — where the SRE / CTO gates POST their review requests
# (your Studio inbox / Slack bridge / on-call webhook). Defaults to a local
# stub so the pod runs day-0.
# HITL_OUTBOUND_URL=http://127.0.0.1:9999/human-notify
#   ^ LOCAL TEST STUB ONLY. Leave it commented. A human seat should be
#     human_interface: "default" (the Studio Inbox) — a real queue a real
#     person clicks. A custom webhook receiver is not how HITL is run.
# Cloud telemetry / CMDB MCP server (AWS Cost Explorer + CloudWatch + CMDB /
# GCP Monitoring / Azure Monitor). Consumed by cost_anomaly_agent's commented
# mcp block — fill it, then uncomment that block in configs/config.yaml.
CLOUDOPS_MCP_URL=
CLOUDOPS_MCP_TOKEN=
# Cloud-billing MCP server (AWS Cost Explorer / GCP Cloud Billing / Azure Cost
# Management) — the production source for finops_governance_agent's tag/budget
# reads (dev: the seeded store).
CLOUD_BILLING_MCP_URL=
CLOUD_BILLING_MCP_TOKEN=
# SLACK_INFRA_CHANNEL feeds the manager's slack escalation target (channel_id
# + message_template). SLACK_BOT_TOKEN / SLACK_SIGNING_SECRET belong to a
# `channels: {slack: {...}}` block (ChannelConfig) — they are NOT auto-consumed
# by the escalation target; add a `channels:` block to use the SDK's Slack
# ingress/egress adapter.
SLACK_BOT_TOKEN=
SLACK_SIGNING_SECRET=
SLACK_INFRA_CHANNEL=
LEAFMESH_ENV_TOKEN=development
