-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy path.env.example
More file actions
47 lines (39 loc) · 2.43 KB
/
.env.example
File metadata and controls
47 lines (39 loc) · 2.43 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
# ClawSuite → OpenClaw Gateway Connection
#
# The ClawSuite server connects to the OpenClaw Gateway via WebSocket.
# Keep secrets here (never exposed to the browser).
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# GATEWAY CONNECTION (Required)
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# Gateway WebSocket URL
# - Local gateway (default): ws://127.0.0.1:18789
# - Remote gateway: wss://your-gateway.example.com
# - Docker: ws://host.docker.internal:18789 (to reach host machine)
CLAWDBOT_GATEWAY_URL=ws://127.0.0.1:18789
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# AUTHENTICATION (Choose one method)
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# Gateway Token (Recommended)
# How to find your token:
# 1. Run: openclaw config get gateway.auth.token
# 2. Or check OpenClaw settings UI
# Format: clw_abc123def456... (64+ characters)
CLAWDBOT_GATEWAY_TOKEN=
# Gateway Password (Alternative to token)
# Only use if your gateway is configured for password auth
# CLAWDBOT_GATEWAY_PASSWORD=
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# CLAWSUITE ACCESS CONTROL (Optional)
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# Password-protect ClawSuite web interface
# Leave empty for no authentication (default for local use)
# Set this for production deployments
# CLAWSUITE_PASSWORD=
# Allow access from non-localhost addresses
# Comma-separated list of hostnames/IPs
# Also binds server to 0.0.0.0 instead of 127.0.0.1
# Examples:
# - Tailscale: my-server.tail1234.ts.net
# - LAN: 192.168.1.50
# - Subnet: 192.168.1.0/24
# CLAWSUITE_ALLOWED_HOSTS=