-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.json
More file actions
46 lines (46 loc) · 1.04 KB
/
schema.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Environment Variables",
"type": "object",
"required": ["TOKEN", "CLAWD_TOKEN"],
"properties": {
"TOKEN": {
"type": "string",
"minLength": 1,
"description": "Token for authentication"
},
"HOST": {
"type": "string",
"minLength": 1,
"default": "localhost",
"description": "Host for authentication"
},
"PORT": {
"type": "number",
"maximum": 65535,
"default": 8090,
"description": "Port number"
},
"CLAWD_AGENT_ID": {
"type": "string",
"default": "main",
"description": "Agent ID for Clawd"
},
"CLAWD_HOST": {
"type": "string",
"default": "localhost",
"description": "Host for Clawd"
},
"CLAWD_PORT": {
"type": "number",
"maximum": 65535,
"default": 18789,
"description": "Port for Clawd"
},
"CLAWD_TOKEN": {
"type": "string",
"minLength": 1,
"description": "Token for Clawd authentication"
}
}
}