-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
72 lines (54 loc) · 1.98 KB
/
Copy path.env.example
File metadata and controls
72 lines (54 loc) · 1.98 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
# ============================================
# EzCoworker Community Edition — .env.example
# Copy this to .env and fill in your values
# ============================================
# Database
POSTGRES_USER=postgres
POSTGRES_PASSWORD=your-secure-password
POSTGRES_DB=claudedb_community
# Auth
JWT_SECRET=your-jwt-secret-change-this
ADMIN_SETUP_KEY=your-admin-setup-key
# Ollama (local models — required)
OLLAMA_URL=http://host.docker.internal:11434
AGENT_IMAGE=claude-agent-image-community
# ============================================
# COMMERCIAL MODEL PROVIDERS (all optional)
# Add API keys for any providers you want to use
# ============================================
#LITELLM_MASTER_KEY=sk-ezcoworker-community # or any sk- string
# Anthropic (Claude)
# ANTHROPIC_API_KEY=sk-ant-...
# OpenAI
# OPENAI_API_KEY=sk-...
# Google Gemini
# GEMINI_API_KEY=...
# Groq
# GROQ_API_KEY=gsk_...
# OpenRouter (access to many models)
# OPENROUTER_API_KEY=sk-or-v1-...
# OPENROUTER_MODELS=anthropic/claude-3.5-sonnet,google/gemini-2.0-flash-exp
#AZURE_API_KEY=...
#AZURE_API_BASE=https://<resource>.openai.azure.com/
# Together AI
# TOGETHER_API_KEY=...
# ============================================
# DATA PATHS WINDOWS USERS
# ============================================
HOST_USER_DATA_PATH=C:/claude_data_community/users
HOST_SKILLS_PATH=C:/claude_data_community/skills
HOST_PLUGINS_PATH=C:/claude_data_community/plugins
HOST_MCP_SERVERS_PATH=C:/claude_data_community/mcp-servers
# ============================================
# DATA PATHS MACOS/LINUX USERS
# ============================================
#HOST_USER_DATA_PATH=/opt/claude_data_community/users
#HOST_SKILLS_PATH=/opt/claude_data_community/skills
#HOST_PLUGINS_PATH=/opt/claude_data_community/plugins
#HOST_MCP_SERVERS_PATH=/opt/claude_data_community/mcp-servers
# ============================================
# AGENT SETTINGS
# ============================================
CONTEXT_MESSAGE_LIMIT=10
MAX_AGENT_TURNS=40
MAX_AGENT_TURNS_LOCAL=8