-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathconfig.json.example
63 lines (63 loc) · 1.69 KB
/
config.json.example
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
60
61
62
63
{
"devices": {
"default": "<device_id>",
"<device_id>": {
"ip": "xxx.xxx.xxx.xxx",
"user": "rokudev",
"password": "<password>"
}
},
"projects": {
"default": "<project id>",
"project_dir": "<optional parent directory for all projects>",
"<project id>": {
"directory": "<path/to/repo>",
"source_files": ["resources","source", "manifest"],
"excludes": [],
"app_name": "<app name>",
"stage_method": "<git|script>",
"stages":{
"production": {
"branch": "<branch>",
"script": {"stage": "<command to stage>", "unstage": "<command to unstage, optional>"},
"key": "key1"
}
}
}
},
"keys": {
"key_dir": "<optional parent directory for all keys>",
"key1": {
"keyed_pkg": "<path/to/signed/package>",
"password": "<password>"
}
},
"input_mappings": {
"\\e[1~": [ "home", "Home" ],
"<": [ "rew", "<" ],
">": [ "ff", ">" ],
"=": [ "play", "=" ],
"\r": [ "select", "Enter" ],
"\\e[D": [ "left", "Left Arrow" ],
"\\e[C": [ "right", "Right Arrow" ],
"\\e[B": [ "down", "Down Arrow" ],
"\\e[A": [ "up", "Up Arrow" ],
"\t": [ "back", "Tab" ],
"": [ "replay", "" ],
"*": [ "info", "*" ],
"\u007f": [ "backspace", "Backspace" ],
"?": [ "search", "?" ],
"\\e\r": [ "enter", "Alt + Enter" ],
"\\e[5~": [ "volumeup", "Page Up" ],
"\\e[6~": [ "volumedown", "Page Down" ],
"\\e[4~": [ "mute", "End" ],
"": [ "channeldown", "" ],
"": [ "channelup", "" ],
"": [ "tuner", "" ],
"": [ "hdmi1", "" ],
"": [ "hdmi2", "" ],
"": [ "hdmi3", "" ],
"": [ "hdmi4", "" ],
"": [ "avi", "" ]
}
}