Skip to content

Latest commit

 

History

History
53 lines (39 loc) · 1.01 KB

README.md

File metadata and controls

53 lines (39 loc) · 1.01 KB

medconnect

Build Status Dependency Status

First, navigate to the project root folder.

Install NVM

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.1/install.sh

Installs the version of Node that we want.

nvm install 4.4.5 

Specifies which version of Node to be using.

nvm use 4.4.5

Maps default to 4.4.5

nvm alias default 4.4.5

Install all the Node modules required.

npm install

Then, set up your MySQL databases

create database medconnect;
use medconnect;
source /path/to/project/config/schema.sql

Then, edit your .env file with your database credentials

Afterwards, run the tests to make sure everything is correctly setup

npm test

Finally, start the server and in a browser navigate to your server on port 80

npm start