-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy path.env.example
More file actions
38 lines (31 loc) · 1.19 KB
/
.env.example
File metadata and controls
38 lines (31 loc) · 1.19 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
33
34
35
36
37
38
# Claude CLI Configuration
CLAUDE_CLI_PATH=claude
# Authentication Method (optional - explicit selection)
# Set this to override auto-detection. Values: cli, api_key, bedrock, vertex
# If not set, auto-detects based on available env vars (ANTHROPIC_API_KEY, etc.)
# CLAUDE_AUTH_METHOD=cli
# API Configuration
# If API_KEY is not set, server will prompt for interactive API key protection on startup
# Leave commented out to enable interactive prompt, or uncomment to use a fixed API key
# API_KEY=your-optional-api-key-here
# Server Configuration
PORT=8000
# Host binding address - use 127.0.0.1 for local-only access, 0.0.0.0 for all interfaces
# CLAUDE_WRAPPER_HOST=0.0.0.0
# Maximum request body size in bytes (default: 10MB)
# MAX_REQUEST_SIZE=10485760
# Timeout Configuration (milliseconds)
MAX_TIMEOUT=600000
# CORS Configuration
CORS_ORIGINS=["*"]
# Model Configuration
# Default Claude model to use when none specified in request
DEFAULT_MODEL=claude-sonnet-4-5-20250929
# Rate Limiting Configuration
RATE_LIMIT_ENABLED=true
RATE_LIMIT_PER_MINUTE=30
RATE_LIMIT_CHAT_PER_MINUTE=10
RATE_LIMIT_DEBUG_PER_MINUTE=2
RATE_LIMIT_AUTH_PER_MINUTE=10
RATE_LIMIT_SESSION_PER_MINUTE=15
RATE_LIMIT_HEALTH_PER_MINUTE=30