A starter kit for projects
-
Install Node. You can either install Node from its source or if you are using homebrew, run
brew install node
. -
Download all the Node dependencies by running
npm install
. -
Download all required packages by running
npm install -g bower
thenbower install
. -
Sass is a super awesome preprocessor, so you will be required to have Sass on your machine in order for things to work. If you do not have Ruby installed follow this link, otherwise run
bundle install
to install the projects dependencies. -
LiveReload is used to refresh the browser, please visit how do I install and use the browser extensions for help installing an extension for your browser.
During development run the Grunt server by running grunt serve
.
For deployment run grunt production
. Grunt will magically package, concatenate, combine and do some super awesome things for you; then store the package in a dist
directory. From there you can upload the dist
contents to your webserver and happy time for all!