This repository was archived by the owner on Aug 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigschema.json
51 lines (51 loc) · 1.57 KB
/
configschema.json
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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"stream2": {"type": "boolean", "default": false},
"altTTSVoiceAPI": {"type": "string", "default": "API_URL"},
"obs": {
"type": "object",
"properties": {
"enable": {"type": "boolean", "default": true},
"gameLayout": {"type": "string", "default": "Game Layout"},
"capture1": {"type": "string", "default": "Game Capture 1"},
"capture2": {"type": "string", "default": "Game Capture 2"},
"capture3": {"type": "string", "default": "Game Capture 3"},
"capture4": {"type": "string", "default": "Game Capture 4"},
"camera1": {"type": "string", "default": "Camera Capture 1"},
"camera2": {"type": "string", "default": "Camera Capture 2"}
}
},
"mpd": {
"type": "object",
"properties": {
"enable": {"type": "boolean", "default": true},
"address": {"type": "string", "default": "localhost"},
"port": {"type": "integer", "default": 6600},
"volume": {"type": "integer", "default": 10}
}
},
"tracker": {
"type": "object",
"properties": {
"username": {"type": "string", "default": "TRACKER_USERNAME"},
"password": {"type": "string", "default": "TRACKER_PASSWORD"},
"postKey": {"type": "string", "default": "DEFAULT_KEY"}
}
},
"streamdeck": {
"type": "object",
"properties": {
"port": {"type": "integer", "default": 1235},
"key": {"type": "string", "default": "DEFAULT_KEY"}
}
},
"twitchExt": {
"type": "object",
"properties": {
"token": {"type": "string", "default": "EXTENSION_TOKEN"}
}
}
}
}