<%= name %>
===========

Describe <%= name %> here.

Required Steps:
---------------

1. `$ gulp`
2. Get to work.

---
> **note:**
>
> If this does not work, please install gulp (`$ npm i gulp -g`)
>
> If you run into issues with favicons, [please install ImageMagick](http://www.imagemagick.org/script/binary-releases.php).

---

Development & Testing
---------------------

To run a livereload development server:

```bash
$ gulp // OR
$ gulp watch
```

To just compile the files:

```bash
$ gulp build
```
To run the tests:

```bash
$ gulp test:e2e // integration tests
$ gulp test:unit // unit tests
$ gulp test // both
```

Production Build
----------------

To build for production, run `$ gulp build --production`. Use git commit hook
trickery to invoke this on the staging server when the master branch is pushed
for a nice deployment workflow.
