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 pull request #5 from nightscout/master
pr
- Loading branch information
Showing
149 changed files
with
17,076 additions
and
1,330 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Don't include the .git history in the Docker image: | ||
.git | ||
|
||
# Items from .gitignore | ||
bower_components/ | ||
node_modules/ | ||
bundle/bundle.out.js | ||
.idea/ | ||
*.iml | ||
my.env | ||
*.env | ||
static/bower_components/ | ||
.*.sw? | ||
.DS_Store | ||
.vagrant | ||
/iisnode | ||
coverage/ | ||
npm-debug.log |
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 |
---|---|---|
|
@@ -20,3 +20,6 @@ static/bower_components/ | |
coverage/ | ||
|
||
npm-debug.log | ||
*.heapsnapshot | ||
|
||
/tmp |
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 @@ | ||
8.1.4 |
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,23 +1,14 @@ | ||
language: node_js | ||
sudo: false | ||
sudo: required | ||
node_js: | ||
- 0.10 | ||
- 0.12 | ||
- 4 | ||
- 5 | ||
- "8.5.0" | ||
matrix: | ||
fast_finish: true | ||
allow_failures: | ||
- node_js: 4 | ||
- node_js: 5 | ||
services: mongodb | ||
services: | ||
- mongodb | ||
- docker | ||
script: make travis | ||
after_success: | ||
- nvm version | ||
- if [[ ! -z "$DOCKER_USER" ]]; then docker login -u ${DOCKER_USER} -p ${DOCKER_PASS} && git checkout -- . && git clean -fd . && make docker_release; fi | ||
after_script: make report | ||
env: | ||
- CXX=g++-4.8 | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-4.8 |
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 +1,5 @@ | ||
Copyright (C) 2015 The Nightscout Foundation, http://www.nightscoutfoundation.org | ||
|
||
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 | ||
|
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,18 @@ | ||
FROM node:8.5.0 | ||
|
||
MAINTAINER Nightscout Contributors | ||
|
||
RUN apt-get update && \ | ||
apt-get -y dist-upgrade | ||
|
||
RUN mkdir -p /opt/app | ||
ADD . /opt/app | ||
WORKDIR /opt/app | ||
|
||
RUN npm install && \ | ||
npm run postinstall && \ | ||
npm run env | ||
|
||
EXPOSE 1337 | ||
|
||
CMD ["node", "server.js"] |
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.