-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
59 lines (59 loc) · 1.79 KB
/
app.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
{
"name": "Diasend to Nightscout Bridge",
"repository": "https://github.com/funkstille/diasend2nightscout-bridge",
"env": {
"API_SECRET_NS": {
"description": "This must match the API_SECRET password from your Nightscout website.",
"value": "",
"required": true
},
"DIASEND_ACCOUNT_NAME": {
"description": "DIASEND user name (E-Mail Address).",
"value": "",
"required": true
},
"DIASEND_PASSWORD": {
"description": "DIASEND password.",
"value": "",
"required": true
},
"NS_WEBSITE_HOSTNAME": {
"description": "The host name for your Nightscout website. Example: sitename.herokuapp.com. Do not include http:// or https://",
"value": "",
"required": true
},
"DIASEND_SERVER": {
"description": "Diasend Server (api.diasend.com/1). Without Https or last slash",
"value": "",
"required": false
},
"DIASEND_APP_CLIENT_ID": {
"description": "The Client ID used by the Diasend App, so we can mask ourselves as diasend app",
"value": "",
"required": false
},
"DIASEND_APP_CLIENT_SECRET": {
"description": "The Client Secret",
"value": "",
"required": false
},
"maxCount": {
"description": "OPTIONAL: The maximum number of records to fetch per update. Default: 1",
"value": "",
"required": false
},
"minutes": {
"description": "OPTIONAL: The time window to search for new data per update. Default: 1440 (one day in minutes)",
"value": "",
"required": false
},
"SHARE_INTERVAL": {
"description": "OPTIONAL: The time to wait between each update. Deault: 150000 (2.5 minutes in milliseconds)",
"value": "",
"required": false
}
},
"addons": [
"papertrail"
]
}