forked from nightscout/minimed-connect-to-nightscout
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
54 lines (54 loc) · 1.91 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
{
"name": "MiniMed Connect to Nightscout",
"repository": "https://github.com/nightscout/minimed-connect-to-nightscout",
"env": {
"CARELINK_USERNAME": {
"description": "Your username for CareLink (https://carelink.minimed.com)",
"value": "",
"required": true
},
"CARELINK_PASSWORD": {
"description": "Your password for CareLink (https://carelink.minimed.com)",
"value": "",
"required": true
},
"API_SECRET": {
"description": "This must match the API_SECRET password from your Nightscout website",
"value": "",
"required": true
},
"WEBSITE_HOSTNAME": {
"description": "The host name for your Nightscout instance, for example yoursite.herokuapp.com or yoursite.azurewebsites.net. Do not include http:// or https://.",
"value": "",
"required": true
},
"CARELINK_REQUEST_INTERVAL": {
"description": "OPTIONAL: number of milliseconds to wait between requests to the CareLink server (default: 60000)",
"value": "",
"required": false
},
"CARELINK_SGV_LIMIT": {
"description": "OPTIONAL: maximum number of recent sensor glucose values to send to Nightscout (default: 24)",
"value": "",
"required": false
},
"CARELINK_MAX_RETRY_DURATION": {
"description": "OPTIONAL: maximum number of seconds to spend retrying failed requests to CareLink, ideally a power of 2 (default: 512)",
"value": "",
"required": false
},
"CARELINK_QUIET": {
"description": "OPTIONAL: set to a truthy value to not output details of CareLink and Nightscout requests to the console (default: empty)",
"value": "",
"required": false
},
"NS": {
"description": "OPTIONAL: a fully-qualified Nightscout URL (e.g. https://sitename.azurewebsites.net) which overrides WEBSITE_HOSTNAME",
"value": "",
"required": false
}
},
"addons": [
"papertrail"
]
}