Skip to content

Commit

Permalink
Merge pull request #364 from jimsiff/wip/alarm-types-update
Browse files Browse the repository at this point in the history
Heroku Button updates for Alarm Types
  • Loading branch information
jasoncalabrese committed Jan 23, 2015
2 parents dae7388 + 9bb7253 commit 29b0198
Showing 1 changed file with 30 additions and 5 deletions.
35 changes: 30 additions & 5 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,52 @@
"repository": "https://github.com/nightscout/cgm-remote-monitor",
"env": {
"MONGO_COLLECTION": {
"description": "The mongo collection for CGM data. Most users should leave this as default.",
"description": "REQUIRED: The mongo collection used for CGM data. Default value is 'entries'. Most users should use the default.",
"value": "entries",
"required": true
},
"API_SECRET": {
"description": "User generated password required for REST API and other features (12 character minimum).",
"description": "REQUIRED: User generated password used for REST API and optional features (12 character minimum).",
"value": "",
"required": true
},
"ENABLE": {
"description": "Space delimited list of optional features to enable. Leave blank for a default site.",
"description": "Space delimited list of optional features to enable, such as 'careportal'.",
"value": "",
"required": false
},
"ALARM_TYPES": {
"description": "Nightscout alarm behavior control. Default null value implies 'predict'. For adjustable alarm thresholds (set below), set to 'simple'.",
"value": "",
"required": false
},
"BG_HIGH": {
"description": "Urgent high BG alarm. Default null value implies 260. Must be set in mg/dL. Only used with simple alarms.",
"value": "",
"required": false
},
"BG_TARGET_TOP": {
"description": "Non-urgent high BG alarm, the top of your target range. Default null value implies 180. Must be set in mg/dL. Only used with simple alarms.",
"value": "",
"required": false
},
"BG_TARGET_BOTTOM": {
"description": "Non urgent low BG alarm, the bottom of your target range. Default null value implies 80. Must be set in mg/dL. Only used with simple alarms.",
"value": "",
"required": false
},
"BG_LOW": {
"description": "Urgent Low BG alarm. Default null value implies 55. Must be set in mg/dL. Only used with simple alarms.",
"value": "",
"required": false
},
"PUSHOVER_API_TOKEN": {
"description": "Pushover API token, required for Pushover notifications. Leave blank for a default site.",
"description": "Pushover API token, required for Pushover notifications. Leave blank if not using Pushover.",
"value": "",
"required": false
},
"PUSHOVER_USER_KEY": {
"description": "Pushover user key, required for Pushover notifications. Leave blank for a default site.",
"description": "Pushover user key, required for Pushover notifications. Leave blank if not using Pushover.",
"value": "",
"required": false
}
Expand Down

0 comments on commit 29b0198

Please sign in to comment.