Web demo: https://cs361-medcheck.herokuapp.com/
Please use vagrant to test this project.
-
Download Vagrant from https://vagrantup.com
-
Clone the repository
git clone https://github.com/lblackwell/cs361-medcheck
-
From the cloned directory, run
vagrant up
-
After it is finished, run
vagrant ssh
-
From the VM, run
cd /vagrant && npm install
-
To start the application, run
npm run dev
orPGPASSWORD=password npm run dev
-
Check the application at
http://localhost:7000
To run unit tests:
- In project directory, run
mocha --recursive
- Scripts in
scripts/
are run from the project directory using bash.