-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
65 lines (51 loc) · 2.22 KB
/
Copy path.env.example
File metadata and controls
65 lines (51 loc) · 2.22 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
WEBHOOK_SECRET=your-webhook-secret-here
ANTHROPIC_AUTH_TOKEN=your-auth-token-here
GITHUB_PAT=your-github-pat-here
PORT=8080
# Mandatory, don't change the value
# Claude Code CLI path.
# (appuser is created by setup-native.sh / Dockerfile)
CLAUDE_CODE_PATH=/home/appuser/.local/bin/claude
# Optional: Native execution directories (used when running without Docker)
# Set automatically by scripts/setup-native.sh.
# NANO_DATA_DIR=./data
# NANO_LOG_DIR=./logs
# DATABASE_PATH=./data/reviews.db
# Claude model for reviews: haiku, sonnet, or opus
CLAUDE_MODEL=sonnet
# Optional: Custom API endpoint (e.g., for a proxy service)
# ANTHROPIC_BASE_URL=https://your-proxy.example.com/api/anthropic
# Optional: API timeout in milliseconds
# API_TIMEOUT_MS=3000000
# Optional: Override default model names
# ANTHROPIC_DEFAULT_HAIKU_MODEL=claude-haiku-4-5
# ANTHROPIC_DEFAULT_SONNET_MODEL=claude-sonnet-4-6
# ANTHROPIC_DEFAULT_OPUS_MODEL=claude-opus-4-6
# Optional: Disable 1M context window
# CLAUDE_CODE_DISABLE_1M_CONTEXT=1
# Optional: Disable telemetry and non-essential traffic
# DISABLE_TELEMETRY=1
# CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1
# Optional: Maximum review duration in seconds (default: 600)
# MAX_REVIEW_DURATION=600
# Optional: Maximum retry attempts for transient failures (default: 2)
# MAX_RETRIES=2
# Optional: Review queue configuration
# MAX_CONCURRENT_REVIEWS=3
# MAX_QUEUE_SIZE=100
# Optional: Authentication for dashboard (default: enabled)
# Set AUTH_ENABLED=false to disable auth for local development.
# AUTH_ENABLED=false
# GOOGLE_CLIENT_ID=your-google-oauth-client-id
# GOOGLE_CLIENT_SECRET=your-google-oauth-client-secret
# SESSION_SECRET=your-random-session-secret-at-least-32-chars
# GOOGLE_OAUTH_REDIRECT_URI=http://localhost:8080/auth/callback
# SESSION_MAX_AGE_HOURS=168
# SECURE_COOKIES=true
# AUTH_COOKIE_DOMAIN=
# Optional: Restrict Google OAuth login to specific email domains (comma-separated)
# ALLOWED_EMAIL_DOMAINS=example.com,mycompany.io
# Optional: WebSocket origin restrictions (comma-separated)
# Empty or unset allows all origins (dev-friendly default).
# Supports exact matches (https://example.com) and wildcard subdomains (https://*.example.com)
# WS_ALLOWED_ORIGINS=https://yourdomain.com,https://*.yourdomain.com