-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (20 loc) · 1.41 KB
/
.env.example
File metadata and controls
23 lines (20 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ── Service credentials (synced from Claude Code userConfig at SessionStart) ──
ARCANE_API_URL=https://your-arcane-instance.example.com
ARCANE_API_KEY=your_arcane_api_key_here
# ── MCP server ───────────────────────────────────────────────────────────────
# Internal container bind port (must match the container-side of the ports mapping in docker-compose.yaml)
ARCANE_MCP_BIND_PORT=3000
# Docker host-side port mapping
ARCANE_MCP_PORT=44332
ARCANE_MCP_TRANSPORT=http # "http" (default) or "stdio"
ARCANE_MCP_TOKEN= # required — generate with: openssl rand -hex 32
ARCANE_MCP_AUTH_ENABLED=true # false = disable bearer auth (proxy-managed only)
LOG_LEVEL=info
# ── Destructive operation safety ─────────────────────────────────────────────
ARCANE_MCP_ALLOW_YOLO=false # true = skip elicitation prompts
ARCANE_MCP_ALLOW_DESTRUCTIVE=false # true = auto-confirm all destructive ops
# ── Docker ───────────────────────────────────────────────────────────────────
PUID=1000
PGID=1000
RUNNING_IN_DOCKER=false
DOCKER_NETWORK=arcane_mcp