cgm-remote-monitor

nightscout web monitor (by nightscout)

Cgm-remote-monitor Alternatives

Similar projects and alternatives to cgm-remote-monitor

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better cgm-remote-monitor alternative or higher similarity.

cgm-remote-monitor reviews and mentions

Posts with mentions or reviews of cgm-remote-monitor. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-01.
  • Pixel can't save me..
    1 project | /r/GooglePixel | 10 May 2023
    https://xdrip.readthedocs.io/en/latest/ https://github.com/nightscout/cgm-remote-monitor https://androidaps.readthedocs.io/en/latest/index.html#
  • Are any C# coders here?
    10 projects | /r/dexcom | 1 May 2023
    Don't waste too much time doing things from the ground up. There are already a few projects that do this sort of thing. Take a look at the nightscout project. https://github.com/nightscout/cgm-remote-monitor
  • apps that changed your life
    22 projects | /r/selfhosted | 16 Jan 2023
    Nightscout for monitoring blood glucose levels: https://github.com/nightscout/cgm-remote-monitor
  • Nightscout – personal blood glucose monitoring as a service
    1 project | news.ycombinator.com | 25 Aug 2022
  • That sucks...Anyone have any free alternatives to Heroku for Nightscout?
    2 projects | /r/nightscout | 25 Aug 2022
    INSECURE_USE_HTTP: 'true' MONGO_CONNECTION: mongodb://mongo:27017/nightscout # CHANGEME below to a secret passphrase that is at least 12 characters long (this is your top secret password to get in) API_SECRET: CHANGEME # CHANGEMEs below: See https://github.com/nightscout/cgm-remote-monitor#plugins for options. To preserve my original config, I've left in my options and just removed stuff that has to be changed. Note that I'm using the Dexcom bridge. DISPLAY_UNITS: CHANGEME ENABLE: careportal boluscalc food bwp cage sage iage iob cob basal ar2 rawbg pushover bgi pump openaps bridge BRIDGE_SERVER: CHANGEME BRIDGE_USER_NAME: CHANGEME BRIDGE_PASSWORD: CHANGEME DEVICESTATUS_ADVANCED: true PUMP_FIELDS: reservoir battery clock PUMP_URGENT_BATT_P: 26 PUMP_WARN_BATT_P: 51 SHOW_FORECAST: openaps AUTH_DEFAULT_ROLES: denied
  • Heroku Ending Free Tier
    9 projects | /r/programming | 25 Aug 2022
    Any free alternatives? Lots of diabetics like myself use the Heroku free plan to run Nightscout.
  • Heroku's Next Chapter
    12 projects | news.ycombinator.com | 25 Aug 2022
    There are 66K thousand forks of https://github.com/nightscout/cgm-remote-monitor and I suspect the vast majority are using the free heroku version, so I would guess there are going to be quite a few unhappy diabetics!
  • Error when deploying heroku app
    2 projects | /r/mongodb | 19 Feb 2022
    This error is displayed when trying to deploy this app from github - https://github.com/nightscout/cgm-remote-monitor
  • Turn your Freestyle FGM into CGM
    1 project | /r/diabetes_t1 | 1 Sep 2021
    I like to add that this becomes even more powerful in combination with nightscout. https://github.com/nightscout/cgm-remote-monitor
  • Install NightScout inside a VM
    1 project | /r/diabetes | 15 Mar 2021
    Install NightScout on VM: Ubuntu server 20.04 LTS NOTICE: If you do not have your own web page or static IP, you can user no-ip.com to register a web address. PLEASE READ THE INSTRUCTIONS WITH CARE. THERE ARE PLACES IN CONFIGURATION THAT NEED TO BE REPLACED WITH SPECIFIC VALUE. ------------------------------- ------- PREPARING ENV --------- ------------------------------- 1. Download and install mongoDB: sudo apt install mongodb 2. Install Node.js & GIT sudo apt-get install nodejs npm git 3. install nginx sudo apt-get install nginx 4. Install LetsEncrypt sudo apt-get install letsencrypt python3-certbot-nginx ------------------------------- ---- SETUP MONGO DB------------ ------------------------------- 1. enter mongodb: mongo 2. run following commands to create admin user > use admin > db.createUser( { user: "myUserAdmin", pwd: passwordPrompt(), // or cleartext password roles: [ { role: "userAdminAnyDatabase", db: "admin" }, "readWriteAnyDatabase" ] } ) > exit 3. edit mongodb config to enable authentication: sudo nano /etc/mongodb.conf 4. find the auth=true and uncomment it (delete '#'). Save the document 5. restart mongodb service: sudo systemctl restart mongodb ------------------------------- ---- SETUP NIGHTSCOUT --------- ------------------------------- 1. Go to home folder and clone NightScout repository: git clone https://github.com/nightscout/cgm-remote-monitor.git 2. Enter that directory and create a new file. that file will be used as a startup script: cd cgm-remote-monitor vi start.sh 3. Put the following: #!/usr/bin/bash # environment variables export DISPLAY_UNITS="mg/dl" export MONGO_CONNECTION="mongodb://username:password@localhost:27017/Nightscout?authSource=admin" export BASE_URL="https://YOUR.WEBPAGE.URL" export PORT=1234 export API_SECRET="PUT SOME PASSWORD HERE" export PUMP_FIELDS="reservoir battery status" export DEVICESTATUS_ADVANCED=true export ENABLE="careportal iob cob openaps pump bwg rawbg basal" export TIME_FORMAT=24 # start server node server.js 4. Save file. 5. make file executable: chmod a+x start.sh 6. check if it's working: sudo ./start.sh 7. if everything is ok, let's create a service. Create a new file: sudo vi /etc/systemd/system/nightscout.service 8. Paste the following: [Unit] Description=Nightscout Service After=network.target [Service] Type=simple WorkingDirectory=/your/nightscout/path/cgm-remote-monitor ExecStart=/your/nightscout/path/cgm-remote-monitor/start.sh [Install] WantedBy=multi-user.target 9. Save file and reload daemon: sudo systemctl daemon-reload 10. Start the service and enable it sudo systemctl enable nightscout.service sudo systemctl start nightscout.service ------------------------------- ------- SETUP NGINX ----------- ------------------------------- NGINX will be used as a reverse proxy. 1. stop the nginx service: sudo systemctl stop nginx 2. open /etc/nginx/sites-enabled/default file, delete everything in it and paste the following: sudo vi /etc/nginx/sites-enabled/default server { listen 80; server_name YOUR_WEB_ADDRESS_LIKE_cgm.ddns.net; location / { proxy_pass http://127.0.0.1:1234; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } } 3. save file and start nginx: sudo systemctl start nginx 4. open the following ports on your router: 80 443 ------------------------------- ----- SETUP CERTIFICATES ------ ------------------------------- 1. run certbot to install certificates on your nginx sudo certbot --nginx -d YOUR_WEB_ADDRESS_LIKE_cgm.ddns.net 2. Enter you email address, Agree to Terms and It will ask you if you want to redirect all traffic from HTTP to HTTPS. Select yes (2). This automatically makes some changes to our NGINX default configuration. you can check new configuration by running: cat /etc/nginx/sites-enabled/default 3. it will also automatically install renewal of certificates. ------------------------- --- setup XDRIP------- ------------------------- In your xDrip+ go to Settings --> Cloud Upload-> NightScout Rest API Set following URL: https://API_SECRET_CODE@YOUR_WEB_PAGE/api/v1 enable synchronization. AND THAT'S IT.
  • A note from our sponsor - SurveyJS
    surveyjs.io | 29 Apr 2024
    With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js. Learn more →

Stats

Basic cgm-remote-monitor repo stats
10
2,321
7.6
10 days ago

Sponsored
The modern identity platform for B2B SaaS
The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
workos.com