Add optional vars to support CarePortal and Pushover

This commit is contained in:
jimsiff
2014-11-20 23:00:23 -08:00
parent fb2c7bd921
commit 662f7b38c3
+21 -4
View File
@@ -3,15 +3,32 @@
"repository": "https://github.com/nightscout/cgm-remote-monitor",
"env": {
"MONGO_COLLECTION": {
"description": "The mongo collection to connect to.",
"value": "entries"
"description": "The mongo collection for CGM data. Most users should leave this as default.",
"value": "entries",
"required": true
},
"API_SECRET": {
"description": "User generated password required for REST API and other features (12 character minimum).",
"value": ""
"value": "",
"required": true
},
"ENABLE": {
"description": "Space delimited list of optional features to enable. Leave blank for a default site.",
"value": "",
"required": false
},
"PUSHOVER_API_TOKEN": {
"description": "Pushover API token, required for Pushover notifications. Leave blank for a default site.",
"value": "",
"required": false
},
"PUSHOVER_USER_KEY": {
"description": "Pushover user key, required for Pushover notifications. Leave blank for a default site.",
"value": "",
"required": false
}
},
"addons": [
"mongolab"
"mongolab:sandbox"
]
}