Skip to content

tannerwj/medconnect

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published