If you would like to see the deployed version please follow the link below
To run:
First clone the repo
create a .env
file in the root-directory of the app:
$ touch .env
add a cookieSecret to that file ie:
cookieSecret="something you want here"
Bootstrap the database:
-
install postgreSQL Homebrew(mac/linux)
postgreSQL interactive installer(windows) -
create the database:
$ createdb -U postgres -w hangtrainer-dev
-
run the migrations:
$ sequelize db:migrate
To run:
$ npm run dev
To run tests:
Install jasmine:
$ npm i --save-dev jasmine
Then:
$ npm run test