# Copy to .env and set real values before `docker compose up`. # These are overlaid onto clawmates.toml at runtime (CLAWMATES_* env wins). # --- Required --------------------------------------------------------------- # Postgres superuser password (also used in the server/broker DSN). POSTGRES_PASSWORD=change-me # Image tag to run. `latest` after a local `docker compose build`, or the # release version (e.g. 0.1.0) when installing from a signed bundle. CLAWMATES_VERSION=latest # --- First-owner bootstrap (local auth) ------------------------------------- # A fresh install has no users and no public signup. Set a password here and # the server provisions this Owner + workspace ONCE on first boot, then never # again (safe to leave set across restarts). Remove/blank to disable. CLAWMATES_BOOTSTRAP_OWNER_EMAIL=owner@clawmates.local CLAWMATES_BOOTSTRAP_OWNER_PASSWORD= CLAWMATES_BOOTSTRAP_WORKSPACE=My Workspace CLAWMATES_BOOTSTRAP_CREDITS=1250 # --- LLM -------------------------------------------------------------------- # Default config (clawmates.toml) uses an OpenAI-compatible endpoint at # http://local-llm:8000/v1 — point base_url at your vLLM/Ollama/llama.cpp. # To use Anthropic instead, set llm.provider = "anthropic" in clawmates.toml # and provide the key here (uncomment): # ANTHROPIC_API_KEY=sk-ant-... # --- Auth mode (optional) --------------------------------------------------- # clawmates.toml defaults to mode = "local". For Clerk, set mode = "clerk" # and auth.issuer_url there, then supply the frontend keys (see docs/clerk.md): # AUTH_MODE=clerk # CLERK_PUBLISHABLE_KEY=pk_live_... # CLERK_SECRET_KEY=sk_live_... # --- Observability (optional) ----------------------------------------------- # Export traces to an OTLP/HTTP collector. Unset = logs only, no network. # CLAWMATES_TELEMETRY__OTLP_ENDPOINT=http://otel-collector:4318 # --- Outbound email delivery (optional) ------------------------------------- # The §15 door's email_send queues to `outbox`; the server's drainer delivers # over SMTP when these are set (otherwise it logs "outbox delivery DISABLED" # and rows stay queued). Use an SMTP submission account (host + app password). # CLAWMATES_SMTP_HOST=smtp.migadu.com # CLAWMATES_SMTP_PORT=587 # CLAWMATES_SMTP_USER=agent@clawmates.work # CLAWMATES_SMTP_PASS= # CLAWMATES_SMTP_FROM=agent@clawmates.work