-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
55 lines (50 loc) · 2.01 KB
/
.env.example
File metadata and controls
55 lines (50 loc) · 2.01 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
# Clawdentity shared local env template
#
# Copy this file to ~/.clawdentity/worktree.env and set real values.
# Then run: pnpm env:sync
#
# Optional override for non-default source path:
# export CLAWDENTITY_SHARED_ENV_FILE=/absolute/path/to/worktree.env
# Required keys
CLAWDENTITY_REGISTRY_URL=http://127.0.0.1:8788
CLAWDENTITY_PROXY_URL=http://127.0.0.1:8787
BOOTSTRAP_SECRET=replace-with-random-secret
BOOTSTRAP_INTERNAL_SERVICE_ID=replace-with-internal-service-id
BOOTSTRAP_INTERNAL_SERVICE_SECRET=replace-with-internal-service-secret
REGISTRY_SIGNING_KEY=replace-with-base64url-ed25519-private-key
REGISTRY_SIGNING_KEYS=[{"kid":"reg-dev-key-1","alg":"EdDSA","crv":"Ed25519","x":"replace-with-base64url-ed25519-public-key","status":"active"}]
# Optional keys
APP_VERSION=local-dev
EVENT_BUS_BACKEND=memory
OPENCLAW_BASE_URL=http://127.0.0.1:18789
INJECT_IDENTITY_INTO_MESSAGE=true
# CLI/user profile overrides
# CLAWDENTITY_API_KEY=clw_pat_replace_me
# CLAWDENTITY_HUMAN_NAME=Your Name
# Connector/OpenClaw optional overrides
# CLAWDENTITY_PROXY_WS_URL=ws://127.0.0.1:8787/v1/relay/connect
# CLAWDENTITY_CONNECTOR_BASE_URL=http://127.0.0.1:19400
# CLAWDENTITY_CONNECTOR_OUTBOUND_PATH=/v1/outbound
# OPENCLAW_HOOK_PATH=/hooks/agent
# OPENCLAW_HOOK_TOKEN=replace-with-random-token
# OPENCLAW_GATEWAY_TOKEN=replace-with-openclaw-gateway-token
# OPENCLAW_HOME=~/.openclaw
# OPENCLAW_STATE_DIR=~/.openclaw
# OPENCLAW_CONFIG_PATH=~/.openclaw/openclaw.json
# CLAWDBOT_STATE_DIR=~/.clawdbot
# CLAWDBOT_CONFIG_PATH=~/.clawdbot/clawdbot.json
# OPENCLAW_GATEWAY_APPROVAL_COMMAND=openclaw
# Proxy runtime tuning optional overrides
# CRL_REFRESH_INTERVAL_MS=300000
# CRL_MAX_AGE_MS=900000
# CRL_STALE_BEHAVIOR=fail-open
# AGENT_RATE_LIMIT_REQUESTS_PER_MINUTE=60
# AGENT_RATE_LIMIT_WINDOW_MS=60000
# RELAY_QUEUE_MAX_MESSAGES_PER_AGENT=500
# RELAY_QUEUE_TTL_SECONDS=3600
# RELAY_RETRY_INITIAL_MS=1000
# RELAY_RETRY_MAX_MS=30000
# RELAY_RETRY_MAX_ATTEMPTS=25
# RELAY_RETRY_JITTER_RATIO=0.2
# RELAY_MAX_IN_FLIGHT_DELIVERIES=5
# RELAY_MAX_FRAME_BYTES=1048576