If you have NodeJS, Grunt & Bower skip to step2.
Please download NodeJS to get started.
Once node is installed you will need to run the below command to install Grunt our task runner and Bower our client side dependency manager.
sudo npm install -g grunt-cli bower
Once the tools are installed run the below command from the root production directory to install the project's dev & production dependencies.
npm install && bower install
To compile the code so it's ready for deployment:
grunt build
This will create a 'dist' folder with the deployable production code.
To run a basic connect development web server and automatically load up your web browser:
grunt server
To run the tests (requires Firefox)
grunt test