-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 1018 Bytes
/
.env.example
File metadata and controls
28 lines (22 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Port (default 3000)
PORT=3000
# Session encryption secret (auto-generated on first run if empty)
SESSION_SECRET=
# Trust reverse proxy headers (true if behind nginx/caddy)
TRUST_PROXY=false
# Working directory for Claude Code
WORKDIR=./workspace
# Max parallel Claude Code processes for Kanban tasks (default 5)
MAX_TASK_WORKERS=5
# Claude subprocess global timeout in milliseconds (default 30 minutes)
# Increase for long agentic tasks; decrease to fail-fast on hangs
CLAUDE_TIMEOUT_MS=1800000
# ── LLM Proxy / Gateway (optional) ──────────────────────────────
# Route Claude CLI requests through a proxy like LiteLLM, Bifrost, or OpenRouter.
# Leave empty to use Anthropic directly (Max subscription / ANTHROPIC_API_KEY).
#
# ANTHROPIC_BASE_URL=http://localhost:4000
# ANTHROPIC_AUTH_TOKEN=your-proxy-master-key
#
# Strip experimental beta headers that break non-Anthropic backends (Bedrock, Vertex):
# CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS=1