Single page application that takes user data and displays a detailed personality analysis.
Clone repository and run:
$ npm installNOTE: Make sure you both have Mongo & Redis installed locally AND have it running, otherwise the project won't start properly.
- node v6+ & npm v3+
- MongoDB v3.2.10
https://nodejs.org/en/download/
https://docs.mongodb.com/manual/installation/#tutorials
All configuration options and connection URIs are located in ./config. When getting errors, be sure to check that your connection URI is correct. Also, remember to copy example.info.js in ./config and create a separate info.js file with your actual conneciton URIs and token secrets.
To run the project in development:
$ npm startGo to http://localhost:3001 to see the magic happen.
If you want to run the project in production, set the NODE_ENV environment variable to production.
$ NODE_ENV=production npm startAlso build the production bundle:
$ npm run dist$ npm testOnly run specific tests
$ npm test -- NotFoundComponentCoverage
$ npm test -- --coverageNo license yet