-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
32 lines (25 loc) · 1.17 KB
/
Copy path.env.example
File metadata and controls
32 lines (25 loc) · 1.17 KB
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
29
30
31
32
# PostgreSQL MCP server connection
POSTGRES_USER="postgres"
POSTGRES_PASSWORD="password"
POSTGRES_HOST="localhost"
POSTGRES_PORT="5432"
POSTGRES_DB="mydb"
# Claude Code performance tuning
CLAUDE_AUTOCOMPACT_PCT_OVERRIDE="85"
# Claude Code experimental features
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS="0"
# Claude Code rendering (fullscreen mode is now the default; set to 0 to opt out)
CLAUDE_CODE_NO_FLICKER="1"
# Claude Code bundled skills/workflows (set to 1 to hide them; project .claude/skills is unaffected)
CLAUDE_CODE_DISABLE_BUNDLED_SKILLS="0"
# Claude Code Bash limits — raise these if pytest runs long or its output gets cut off
BASH_DEFAULT_TIMEOUT_MS="120000"
BASH_MAX_OUTPUT_LENGTH="30000"
# Claude Code subagent limits (explicit defaults; depth 1 disables nesting)
CLAUDE_CODE_MAX_SUBAGENT_SPAWN_DEPTH="3"
CLAUDE_CODE_MAX_CONCURRENT_SUBAGENTS="20"
# Claude Code session budgets (explicit defaults)
# Web searches are shared across the main conversation and all subagents; /clear resets the count
CLAUDE_CODE_MAX_WEB_SEARCHES_PER_SESSION="200"
# How long a main-conversation MCP call runs before moving to a background task; 0 disables
CLAUDE_CODE_MCP_AUTO_BACKGROUND_MS="120000"