forked from arthurdent75/SimpleScheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
executable file
·74 lines (74 loc) · 1.72 KB
/
config.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "Simple Scheduler",
"version": "0.16.13",
"slug": "simplescheduler",
"description": "Simple timer on weekly base",
"url": "https://github.com/schreyack/SimpleScheduler",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "application",
"panel_icon": "mdi:calendar-clock",
"panel_title": "Scheduler",
"panel_admin": false,
"boot": "auto",
"hassio_api": true,
"homeassistant_api": true,
"ingress": true,
"map": [ "share:rw" ],
"options": {
"translations": {
"text_monday": "Monday",
"text_tuesday": "Tuesday",
"text_wednesday": "Wednesday",
"text_thursday": "Thursday",
"text_friday": "Friday",
"text_saturday": "Saturday",
"text_sunday": "Sunday",
"text_ON": "Turn ON",
"text_OFF": "Turn OFF",
"text_save": "Save",
"text_enabled": "Enabled",
"text_device": "Device"
},
"components": {
"light": true,
"scene": true,
"switch": true,
"script": true,
"camera": true,
"climate": true,
"automation": true,
"input_boolean": true,
"media_player": true
},
"debug" : false
},
"schema": {
"translations": {
"text_monday": "str",
"text_tuesday": "str",
"text_wednesday": "str",
"text_thursday": "str",
"text_friday": "str",
"text_saturday": "str",
"text_sunday": "str",
"text_ON": "str",
"text_OFF": "str",
"text_save": "str",
"text_enabled": "str",
"text_device": "str"
},
"components": {
"light": "bool",
"scene": "bool",
"switch": "bool",
"script": "bool",
"camera": "bool",
"climate": "bool",
"automation": "bool",
"input_boolean": "bool",
"media_player": "bool"
},
"debug" : "bool"
},
"webui": "http://[HOST]:[PORT:8099]"
}