forked from siteboon/claudecodeui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
executable file
·81 lines (65 loc) · 3.05 KB
/
.env.example
File metadata and controls
executable file
·81 lines (65 loc) · 3.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Claude Code UI Environment Configuration
# Only includes variables that are actually used in the code
#
# TIP: Run 'cloudcli status' to see where this file should be located
# and to view your current configuration.
#
# Available CLI commands:
# claude-code-ui - Start the server (default)
# cloudcli start - Start the server
# cloudcli status - Show configuration and data locations
# cloudcli help - Show help information
# cloudcli version - Show version information
# =============================================================================
# SERVER CONFIGURATION
# =============================================================================
# Backend server port (Express API + WebSocket server)
#API server
PORT=3001
#Frontend port
VITE_PORT=5173
# Uncomment the following line if you have a custom claude cli path other than the default "claude"
# CLAUDE_CLI_PATH=claude
# =============================================================================
# DATABASE CONFIGURATION
# =============================================================================
# Path to the authentication database file
# This is where user credentials, API keys, and tokens are stored.
#
# To use a custom location:
# DATABASE_PATH=/path/to/your/custom/auth.db
#
# Claude Code context window size (maximum tokens per session)
VITE_CONTEXT_WINDOW=160000
CONTEXT_WINDOW=160000
# VITE_IS_PLATFORM=false
# =============================================================================
# AWS BEDROCK CONFIGURATION (for Docker)
# =============================================================================
# Use AWS Bedrock instead of Anthropic API
# CLAUDE_CODE_USE_BEDROCK=1
# AWS Credentials
# AWS_REGION=us-east-1
# AWS_ACCESS_KEY_ID=your-access-key-id
# AWS_SECRET_ACCESS_KEY=your-secret-access-key
# Or use AWS Profile (uncomment volume ~/.aws in docker-compose.yml)
# AWS_PROFILE=default
# =============================================================================
# DOCKER CONFIGURATION
# =============================================================================
# Restrict project creation to /projects only (for Docker)
# WORKSPACES_ROOT=/projects
# =============================================================================
# =============================================================================
# ANTHROPIC MODEL CONFIGURATION
# =============================================================================
# Default Anthropic models (EU inference profiles)
ANTHROPIC_DEFAULT_SONNET_MODEL="eu.anthropic.claude-sonnet-4-5-20250929-v1:0"
ANTHROPIC_DEFAULT_OPUS_MODEL="eu.anthropic.claude-opus-4-5-20251101-v1:0"
ANTHROPIC_DEFAULT_HAIKU_MODEL="eu.anthropic.claude-haiku-4-5-20251001-v1:0"
# Using inference profile ID
ANTHROPIC_MODEL='eu.anthropic.claude-opus-4-5-20251101-v1:0'
ANTHROPIC_MODEL='eu.anthropic.claude-sonnet-4-5-20250929-v1:0' # default
#ANTHROPIC_MODEL='eu.anthropic.claude-sonnet-4-20250514-v1:0' #old
#ANTHROPIC_MODEL='eu.anthropic.claude-sonnet-4-5-20250929-v1:0' #new
ANTHROPIC_SMALL_FAST_MODEL='eu.anthropic.claude-haiku-4-5-20251001-v1:0'