forked from nightscout/cgm-remote-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:nightscout/cgm-remote-monitor
* 'master' of github.com:nightscout/cgm-remote-monitor: (284 commits) Update config.yml Delete --individual-troubleshooting-help.md Create config.yml Update README.md Make empty cache detection a bit more aggressive to account for cache flush and data insert happening concurrently Support uploading device statuses in batches (nightscout#6147) Bump version to 14.0.6 Fix MONGODB_URI reference in error message Add error cat to error page Fix memory leak and cache update issues in 14.0.4 (nightscout#6133) Update --individual-troubleshooting-help.md Update --bug-report.md Update --feature-request--.md Remove require statement breaking deploys Fix tests Add file missing from last commit Less intimidating error page on start, which also checks for api_secret Don't report an error on every reconnect * Fix security test * Change boot and caching to expose Mongo connection errors Make settings parsing whitespace tolerant ... # Conflicts: # app.json
- Loading branch information
Showing
236 changed files
with
21,924 additions
and
8,058 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
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
16 changes: 0 additions & 16 deletions
16
.github/ISSUE_TEMPLATE/--individual-troubleshooting-help.md
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Troubleshooting Documentation | ||
url: http://nightscout.github.io/troubleshoot/troublehoot/ | ||
about: Having trouble with Nightscout? Please check our step by step troubleshooting instructions. | ||
- name: Nightscout Community Support in Facebook | ||
url: https://www.facebook.com/groups/cgminthecloud | ||
about: If you're a Nightscout user and have trouble with your site, please post questions here. We don't have the resources to answer support questions posted here as tickets. | ||
- name: Nightscout Community Support in Discord | ||
url: https://discord.gg/zg7CvCQ | ||
about: If you're a Nightscout user and have trouble with your site, please post questions here. We don't have the resources to answer support questions posted here as tickets. |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: CI test | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-16.04 | ||
|
||
strategy: | ||
matrix: | ||
node-version: [12.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install dependencies | ||
run: npm install | ||
- name: Install MongoDB | ||
run: | | ||
wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add - | ||
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list | ||
sudo apt-get update | ||
sudo apt-get install -y mongodb-org | ||
sudo apt-get install -y --allow-downgrades mongodb-org=4.4.0 mongodb-org-server=4.4.0 mongodb-org-shell=4.4.0 mongodb-org-mongos=4.4.0 mongodb-org-tools=4.4.0 | ||
- name: Start MongoDB | ||
run: sudo systemctl start mongod | ||
- name: Run Tests | ||
run: npm run-script test-ci | ||
- name: Send Coverage | ||
run: npm run-script coverage |
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.