A front-end boilerplate using Gulp as build tool.
OS X users can install Node with Homebrew.
$ brew install node
Install Gulp globally on your machine.
$ npm install -g gulp-cli
Download or clone the latest version of this boilerplate on your local machine by running:
$ git clone git@github.com:btomy/ca-boilerplate.git
$ cd ca-boilerplate
Install our project dependencies and developer tools listed in package.json
$ npm install
When it's done installing, you can start developing by running:
$ npm start
This command will build our project from the source files (src/
) into a temporary folder (.build/
). Also starts a local web server that watches our files for changes.