-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclawboard.config.example.json
More file actions
59 lines (59 loc) Β· 1.65 KB
/
Copy pathclawboard.config.example.json
File metadata and controls
59 lines (59 loc) Β· 1.65 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
{
"bot": {
"name": "ClawBot",
"displayName": "My ClawBoard",
"emoji": "\ud83e\udd16",
"description": "My OpenClaw Dashboard",
"avatarUrl": "/assets/avatar-placeholder.png"
},
"branding": {
"primaryColor": "#6366f1",
"accentColor": "#8b5cf6",
"backgroundColor": "#0f172a",
"surfaceColor": "#1e293b",
"textColor": "#e2e8f0",
"sidebarTitle": "ClawBoard",
"loginTitle": "Welcome to ClawBoard",
"loginSubtitle": "Your AI Dashboard"
},
"features": {
"journal": true,
"imageGeneration": false,
"taskBoard": true,
"projects": true,
"tools": true,
"auditLog": true,
"stats": true,
"botStatus": true,
"avatarPage": false
},
"paths": {
"dataDir": "/data",
"openclawDir": "/home/user/.openclaw",
"mediaDir": "/data/media",
"sessionsDir": "/home/user/.openclaw/agents/main/sessions"
},
"services": {
"taskApiUrl": "http://localhost:3001/api",
"openclawGatewayWs": "ws://localhost:18789",
"openclawApiUrl": "http://localhost:18789",
"imageGenEndpoint": "",
"imageGenProvider": "none"
},
"deployment": {
"domain": "localhost",
"port": 8082,
"useHttps": false,
"corsOrigin": "http://localhost:8082"
},
"plugins": {
"configFile": "./clawboard.plugins.json",
"enabled": true,
"healthCheckIntervalMs": 60000
},
"sessions": {
"retentionDays": 30,
"backfillOnStart": false,
"refreshMaterializedViewIntervalMs": 900000
}
}