claude-code-proxy/.env.example

27 lines
711 B
Text
Raw Normal View History

2025-06-29 19:27:00 -04:00
# Claude Code Monitor Configuration
# Server Configuration
PORT=3001
READ_TIMEOUT=500
WRITE_TIMEOUT=500
IDLE_TIMEOUT=500
# Anthropic API Configuration
# URL to forward requests to (the actual Anthropic API)
ANTHROPIC_FORWARD_URL=https://api.anthropic.com
ANTHROPIC_VERSION=2023-06-01
ANTHROPIC_MAX_RETRIES=3
# OpenAI Configuration (for subagent routing)
# OPENAI_API_KEY=your-openai-api-key
# OPENAI_BASE_URL=https://api.openai.com
# OPENAI_ALLOW_CLIENT_API_KEY=false
# OPENAI_CLIENT_API_KEY_HEADER=x-openai-api-key
2025-06-29 19:27:00 -04:00
# Storage Configuration
DB_PATH=requests.db
# CORS Configuration (comma-separated values)
# CORS_ALLOWED_ORIGINS=*
# CORS_ALLOWED_METHODS=GET,POST,PUT,DELETE,OPTIONS
# CORS_ALLOWED_HEADERS=*