-
Notifications
You must be signed in to change notification settings - Fork 71.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
1,250 additions
and
684 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
|
||
We track contributions on a per-patch basis using git. | ||
Please see our published git log: | ||
* https://github.com/nightscout/cgm-remote-monitor/commits/master | ||
|
||
Copyright (C) 2015 The Nightscout Foundation, http://www.nightscoutfoundation.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
cgm-remote-monitor (a.k.a. NightScout) | ||
cgm-remote-monitor (a.k.a. Nightscout) | ||
====================================== | ||
|
||
[![Build Status](https://travis-ci.org/nightscout/cgm-remote-monitor.png)](https://travis-ci.org/nightscout/cgm-remote-monitor) | ||
[![Dependency Status](https://david-dm.org/nightscout/cgm-remote-monitor.png)](https://david-dm.org/nightscout/cgm-remote-monitor) | ||
[![Gitter chat](https://badges.gitter.im/nightscout.png)](https://gitter.im/nightscout/public) | ||
[![Stories in Ready](https://badge.waffle.io/nightscout/cgm-remote-monitor.png?label=ready&title=Ready)](https://waffle.io/nightscout/cgm-remote-monitor) | ||
[![Stories in Progress](https://badge.waffle.io/nightscout/cgm-remote-monitor.png?label=in+progress&title=In+Progress)](https://waffle.io/nightscout/cgm-remote-monitor) | ||
|
||
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy) | ||
|
||
This acts as a web-based CGM (Continuous Glucose Montinor) to allow | ||
multiple caregivers to remotely view a patients glucose data in | ||
realtime. The server reads a MongoDB which is intended to be data | ||
This acts as a web-based CGM (Continuous Glucose Monitor) to allow | ||
multiple caregivers to remotely view a patient's glucose data in | ||
real time. The server reads a MongoDB which is intended to be data | ||
from a physical CGM, where it sends new SGV (sensor glucose values) as | ||
the data becomes available. The data is then displayed graphically | ||
and blood glucose values are predicted 0.5 hours ahead using a | ||
and blood glucose values are predicted 0.5 hours ahead using an | ||
autoregressive second order model. Alarms are generated for high and | ||
low values, which can be cleared by any watcher of the data. | ||
|
||
|
@@ -32,23 +34,6 @@ Clone this repo then install dependencies into the root of the project: | |
$ npm install | ||
``` | ||
|
||
### Vagrant install | ||
|
||
Optionally, use [Vagrant](https://www.vagrantup.com/) with the | ||
included `Vagrantfile` and `setup.sh` to install OS and node packages to | ||
a virtual machine. | ||
|
||
```bash | ||
host$ vagrant up | ||
host$ vagrant ssh | ||
vm$ setup.sh | ||
``` | ||
|
||
The setup script will install OS packages then run `npm install`. | ||
|
||
The Vagrant VM serves to your host machine only on 192.168.33.10, you can access | ||
the web interface on [http://192.168.33.10:1337](http://192.168.33.10:1337) | ||
|
||
Usage | ||
--------------- | ||
|
||
|
@@ -61,50 +46,104 @@ ready, just host your web app on your service of choice. | |
|
||
[mongodb]: https://mongolab.com | ||
[json]: https://github.com/rnpenguin/cgm-remote-monitor/blob/master/database_configuration.json | ||
[autoconfigure]: http://nightscout.github.io/pages/configure/ | ||
[mongostring]: http://nightscout.github.io/pages/mongostring/ | ||
[update-fork]: http://nightscout.github.io/pages/update-fork/ | ||
|
||
### Updating my version? | ||
The easiest way to update your version of cgm-remote-monitor to our latest | ||
recommended version is to use the [update my fork tool][update-fork]. It even | ||
gives out stars if you are up to date. | ||
|
||
### What is my mongo string? | ||
|
||
Try the [what is my mongo string tool][mongostring] to get a good idea of your | ||
mongo string. You can copy and paste the text in the gray box into your | ||
`MONGO_CONNECTION` environment variable. | ||
|
||
### Configure my uploader to match | ||
|
||
Use the [autoconfigure tool][autoconfigure] to sync an uploader to your config. | ||
|
||
|
||
### Environment | ||
You can use the default null `database_configuration.json` | ||
config if you set the following environment variables instead. | ||
(Hosting providers often make this easy, and this allows you to avoid | ||
editing anything.) | ||
|
||
* `CUSTOMCONNSTR_mongo` - the mongo connection string, corresponds to | ||
`DB.url`. | ||
* `CUSTOMCONNSTR_mongo_collection` - the mongo collection to use, | ||
corresponds to `DB.collection`. | ||
`VARIABLE` (default) - description | ||
|
||
#### Required | ||
|
||
* `MONGO_CONNECTION` - Your mongo uri, for example: `mongodb://sally:[email protected]:99999/nightscout` | ||
|
||
#### Features/Labs | ||
|
||
* `ENABLE` - Used to enable optional features, currently supports: `careportal` | ||
* `API_SECRET` - A secret passphrase that must be at least 12 characters long, required to enable `POST` and `PUT`; also required for the Care Portal | ||
* `BG_HIGH` (`260`) - must be set using mg/dl units; the high BG outside the target range that is considered urgent | ||
* `BG_TARGET_TOP` (`180`) - must be set using mg/dl units; the top of the target range, also used to draw the line on the chart | ||
* `BG_TARGET_BOTTOM` (`80`) - must be set using mg/dl units; the bottom of the target range, also used to draw the line on the chart | ||
* `BG_LOW` (`55`) - must be set using mg/dl units; the low BG outside the target range that is considered urgent | ||
* `ALARM_TYPES` (`simple` if any `BG_`* ENV's are set, otherwise `predict`) - currently 2 alarm types are supported, and can be used independently or combined. The `simple` alarm type only compares the current BG to `BG_` thresholds above, the `predict` alarm type uses highly tuned formula that forecasts where the BG is going based on it's trend. `predict` **DOES NOT** currently use any of the `BG_`* ENV's | ||
* `PUSHOVER_API_TOKEN` - Used to enable pushover notifications for Care Portal treatments, this token is specific to the application you create from in [Pushover](https://pushover.net/) | ||
* `PUSHOVER_USER_KEY` - Your Pushover user key, can be found in the top left of the [Pushover](https://pushover.net/) site | ||
|
||
|
||
#### Core | ||
|
||
* `DISPLAY_UNITS` (`mg/dl`) - Choices: `mg/dl` and `mmol`. Setting to `mmol` puts the entire server into `mmol` mode by default, no further settings needed. | ||
* `MONGO_COLLECTION` (`entries`) - The collection used to store SGV, MBG, and CAL records from your CGM device | ||
* `MONGO_TREATMENTS_COLLECTION` (`treatments`) -The collection used to store treatments entered in the Care Portal, see the `ENABLE` env var above | ||
* `MONGO_DEVICESTATUS_COLLECTION`(`devicestatus`) - The collection used to store device status information such as uploader battery | ||
* `PORT` (`1337`) - The port that the node.js application will listen on. | ||
* `SSL_KEY` - Path to your ssl key file, so that ssl(https) can be enabled directly in node.js | ||
* `SSL_CERT` - Path to your ssl cert file, so that ssl(https) can be enabled directly in node.js | ||
* `SSL_CA` - Path to your ssl ca file, so that ssl(https) can be enabled directly in node.js | ||
|
||
## Setting environment variables | ||
Easy to emulate on the commandline: | ||
|
||
```bash | ||
echo 'CUSTOMCONNSTR_mongo="mongodb://sally:[email protected]/db"' >> my.env | ||
echo 'CUSTOMCONNSTR_mongo_collection="sallyCGMCollection"' >> my.env | ||
echo 'MONGO_CONNECTION="mongodb://sally:[email protected]:99999/nightscout"' >> my.env | ||
``` | ||
|
||
From now on you can run using | ||
```bash | ||
$ env $(cat my.env) PORT=1337 node server.js | ||
$ env $(cat my.env) PORT=1337 node server.js | ||
``` | ||
|
||
Your hosting provider probably has a way to set these through their | ||
GUI. | ||
Your hosting provider probably has a way to set these through their GUI. | ||
|
||
### Vagrant install | ||
|
||
Optionally, use [Vagrant](https://www.vagrantup.com/) with the | ||
included `Vagrantfile` and `setup.sh` to install OS and node packages to | ||
a virtual machine. | ||
|
||
```bash | ||
host$ vagrant up | ||
host$ vagrant ssh | ||
vm$ setup.sh | ||
``` | ||
|
||
The setup script will install OS packages then run `npm install`. | ||
|
||
The Vagrant VM serves to your host machine only on 192.168.33.10, you can access | ||
the web interface on [http://192.168.33.10:1337](http://192.168.33.10:1337) | ||
|
||
More questions? | ||
--------------- | ||
|
||
Feel free to [post an issue][issues], but read the [wiki][wiki] first. | ||
|
||
[issues]: https://github.com/rnpenguin/cgm-remote-monitor/issues | ||
[wiki]: https://github.com/rnpenguin/cgm-remote-monitor/wiki | ||
[issues]: https://github.com/nightscout/cgm-remote-monitor/issues | ||
[wiki]: https://github.com/nightscout/cgm-remote-monitor/wiki | ||
|
||
License | ||
--------------- | ||
|
||
[agpl-3]: http://www.gnu.org/licenses/agpl-3.0.txt | ||
|
||
cgm-remote-monitor - web app to broadcast cgm readings | ||
Copyright (C) 2014 Nightscout contributors. See the COPYRIGHT file | ||
at the root directory of this distribution and at | ||
https://github.com/nightscout/cgm-remote-monitor/blob/master/COPYRIGHT | ||
Copyright (C) 2015 The Nightscout Foundation, http://www.nightscoutfoundation.org. | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published | ||
|
@@ -118,5 +157,3 @@ License | |
|
||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.