forked from arthurdent75/SimpleScheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
executable file
·102 lines (102 loc) · 2.27 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "Simple Scheduler",
"version": "0.60.0.6",
"slug": "simplescheduler",
"description": "Simple timer on weekly base",
"url": "https://github.com/arthurdent75/SimpleScheduler",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "system",
"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",
"text_name": "Name"
},
"components": {
"light": true,
"scene": true,
"switch": true,
"script": true,
"camera": true,
"climate": true,
"cover": true,
"vacuum": true,
"fan": true,
"automation": true,
"input_boolean": true,
"media_player": true
},
"MQTT": {
"enabled": false,
"server": "core-mosquitto",
"port": "1883",
"username": "",
"password": ""
},
"max_retry": "3",
"details_uncovered": false,
"dark_theme" : false,
"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",
"text_name": "str"
},
"components": {
"light": "bool",
"scene": "bool",
"switch": "bool",
"script": "bool",
"camera": "bool",
"climate": "bool",
"cover": "bool",
"vacuum": "bool",
"fan": "bool",
"automation": "bool",
"input_boolean": "bool",
"media_player": "bool"
},
"MQTT": {
"enabled": "bool",
"server": "str",
"port": "str",
"username": "str",
"password": "str"
},
"max_retry": "str",
"details_uncovered": "bool",
"dark_theme" : "bool",
"debug" : "bool"
},
"webui": "http://[HOST]:[PORT:8099]"
}