You first need to setup your environment.
-
Download and install Node.js (at least version 7.2.1)
- Mac OSX
- Install Homebrew
- Install MongoDB
brew install mongodb - Create MongoDB data directory
sudo mkdir -p /data/db - Correct permissions
sudo chmod -R 0755 /data/db && sudo chown $USER /data/db - Start MongoDB
mongod
- Leave this running or just close the terminal window while running
- You'll have to do this step every time you restart your computer
- Windows
- Install Chocolatey
- Install MongoDB
choco install mongodb - Create MongoDB data directory
mkdir /data/db - Start MongoDB
mongod.exe
- Leave this running or just close the terminal window while running
- You'll have to do this step every time you restart your computer
After forking, cloning, and navigating into repository:
- Install dependencies
npm install - Duplicate
.env.exampleand name it.env - Leave
npm run gulprunning in one terminal session - navigate to
http://localhost:3000/registerto create a user
- Download Google Chrome
- Install Java JDK
- Mac OSX
brew cask install java - Windows
choco install jdk7
- Run
npm test
