-
Notifications
You must be signed in to change notification settings - Fork 115
/
config.defaults.json
43 lines (43 loc) · 1.01 KB
/
config.defaults.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
{
"api": {
"credentials": {
"email": "Email of your TooGoodToGo account."
},
"session": {},
"headers": {
},
"pollingIntervalInMs": 30000,
"authenticationIntervalInMS": 3600000
},
"notifications": {
"console": {
"enabled": false,
"clear": true
},
"desktop": {
"enabled": false
},
"telegram": {
"enabled": false,
"botToken": "See README",
"chats": []
},
"apprise": {
"enabled": false,
"host": "apprise:8080",
"services": [
{
"url": "Any Apprise Notification service URL. Example: mailto://domain.com?user=userid&pass=password. See https://github.com/caronc/apprise#table-of-contents",
"format": "The message format, as supported by this notification service. Can be `html`, `text`"
}
]
}
},
"messageFilter": {
"showUnchanged": false,
"showDecrease": false,
"showDecreaseToZero": false,
"showIncrease": false,
"showIncreaseFromZero": true
}
}