This is the repo for the MongoDB Soup To Bits that uses a simplified version of JavaScript.com
Install NVM ($ brew install nvm and follow instructions)
nvm install 4.2.1
nvm use 4.2.1
npm install -g gulp
npm installThis app authenticates with GitHub, so you'll need to create a GitHub Application and set ENVs for GH_CLIENT_ID and GH_CLIENT_SECRET.
Run the application with $ npm start. You can also set the environment variables at start time. Here's an example:
$ GH_CLIENT_ID=myid GH_CLIENT_SECRET=mysecret npm startFor debugging all the things, run DEBUG=* npm start.
To build assets locally, you'll need to install Bower dependencies and run these Gulp tasks:
$ bower install
$ gulp sass
$ gulp javascriptRemember to re-run these tasks after pulling or changing branches.