STEP 1- Install node modules using : npm install
This will fetch all the plugins needed to setup the environment e.g. all the grunt plugins
STEP 2- Install bower dependencies using : bower install
This will fetch all the project specific dependencies declared as bower dependencies into the bower.json file.
STEP 3- Build the project using grunt command : grunt --force
STEP 4- To run the app while development do: grunt serve
This will run the server on 9000 port and will automatically open the home page on your default browser.
To run the project with concatenated and minified files repeat: STEP-3 and then : grunt serve:dist
NOTE: For production the content of the dist folder should be used.