-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.schema.json
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathconfig.schema.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Codex Harmony Remote Local Configuration",
"type": "object",
"additionalProperties": false,
"properties": {
"bridgeUrl": {
"type": "string",
"description": "URL used by the phone app to reach the local bridge or public relay.",
"examples": ["http://127.0.0.1:8787", "http://192.168.1.10:8787"]
},
"bridgeToken": {
"type": "string",
"description": "Shared bridge token. Leave empty only when the bridge is private and local."
},
"relayHost": {
"type": "string",
"description": "Public relay host or IP."
},
"relayPort": {
"type": "integer",
"minimum": 1,
"maximum": 65535,
"default": 19078
},
"relayToken": {
"type": "string",
"description": "Shared token used by PC and phone helper for the relay."
},
"deviceId": {
"type": "string",
"description": "HDC target device id."
},
"hdcPath": {
"type": "string",
"description": "Absolute path to hdc.exe."
}
},
"required": ["bridgeUrl", "hdcPath"]
}