-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
51 lines (42 loc) · 1.9 KB
/
Copy path.env.example
File metadata and controls
51 lines (42 loc) · 1.9 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
# OpenClaw Team — Environment Variables
# Copy to .env and fill in your values.
# [required] = must be set. [optional] = has defaults.
# ── Database (required for Docker deployment) ──────────────────────────────────
POSTGRES_PASSWORD=changeme
POSTGRES_DB=openclaw_team
POSTGRES_USER=openclaw_team
# ── User Accounts (recommended — random passwords generated if not set) ───────
MISSION_CONTROL_OWNER_PASSWORD=
MISSION_CONTROL_OPERATOR_PASSWORD=
MISSION_CONTROL_VIEWER_PASSWORD=
# ── Model Provider Keys (at least one required) ───────────────────────────────
# Fill in the providers you use. Leave unused ones empty.
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
GOOGLE_API_KEY=
DEEPSEEK_API_KEY=
# Other providers (optional)
OPENROUTER_API_KEY=
QWEN_API_KEY=
DASHSCOPE_API_KEY=
XAI_API_KEY=
ZHIPUAI_API_KEY=
BIGMODEL_API_KEY=
# OpenClaw unified auth (alternative to per-provider keys)
OPENCLAW_AUTH_SOURCE_FILE=
OPENCLAW_AUTH_PROFILES_JSON=
# ── Server ─────────────────────────────────────────────────────────────────────
# [optional] Port for the web UI and API. Default: 18890
MISSION_CONTROL_PORT=18890
# [optional] Path to openclaw installation directory.
OPENCLAW_DIR=
# [optional] Frontend dev proxy target. Default: http://127.0.0.1:18890
MISSION_CONTROL_API_TARGET=http://127.0.0.1:18890
# ── Docker Resource Limits (optional) ──────────────────────────────────────────
# Uncomment and adjust as needed.
# MISSION_CONTROL_CPUS=6.0
# MISSION_CONTROL_MEM_LIMIT=6g
# POSTGRES_CPUS=2.0
# POSTGRES_MEM_LIMIT=1g
# REDIS_CPUS=1.0
# REDIS_MEM_LIMIT=256m