D-line is an analytic webapp for diabetes patients which can handle your medical history and give you insights about your medicine and its effectiveness. The Dline analytics is powered by Machine Learning algorithms in backend to assist its users with predictive results overtime.
- Clone the D-line repository using
git clone <url>
- Run
npm install
from the directory - The command line will install necessary pakage files
- Start mongod service or run just open
run.bat
- Run
node app.js
to start the D-line - Open your browser at
localhost:3000
- Make sure you have installed and configured MongoDB at your localmachine
- Navigate to the d-line-app repository folder and run
bash start.sh
- Open your browser at
localhost:3000
Web demo link: https://shaz13.github.io/demo-d-line/
- If you get an NPM ERR!! code while executing
npm install
. - Delete the node_modules directly and follow from Step 2 again
- Don't run the
npm install xxx --save
withsudo
permissions on Ubuntu. It will change the permissions of package.json to root and you can't modify it for development purpose unless you runchmod 755
to own the package.json again.