-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
59 lines (58 loc) · 1.43 KB
/
config.json
File metadata and controls
59 lines (58 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "Meter Monitor",
"version": "4.1.0",
"image": "ghcr.io/phiph-s/metermonitor-managementserver",
"slug": "meter_monitor",
"description": "Integrate ESP32 based meter monitor cams with Home Assistant using AI",
"startup": "services",
"arch": ["aarch64", "amd64"],
"ingress": true,
"panel_icon": "mdi:gauge",
"ingress_port": 8070,
"homeassistant_api": true,
"environment": {
"PYTHONUNBUFFERED": "1"
},
"options": {
"log_template": "%t %m",
"max_history": 200,
"max_evals": 100,
"mqtt": {
"broker": "172.30.32.1",
"port": 1883,
"topic": "MeterMonitor/#",
"username": "esp",
"password": "esp"
},
"allow_negative_correction": true,
"publish_to": "homeassistant/sensor/watermeter_{device}/",
"dbfile": "/data/metermonitor.db",
"homeassistant": {
"use_supervisor_token": true,
"url": "http://supervisor/core",
"token": "",
"request_timeout_s": 10
}
},
"schema": {
"log_template": "str?",
"max_history": "int(1,)",
"max_evals": "int(1,)",
"mqtt": {
"broker": "str",
"port": "port",
"topic": "str",
"username": "str",
"password": "str"
},
"allow_negative_correction": "bool",
"publish_to": "str",
"dbfile": "str",
"homeassistant": {
"use_supervisor_token": "bool",
"url": "str?",
"token": "str?",
"request_timeout_s": "int(1,)"
}
}
}