Skip to content
This repository has been archived by the owner on Apr 7, 2023. It is now read-only.

Developer's Guide

Colin McLeod edited this page Oct 23, 2015 · 6 revisions

Dependencies

  1. Node JS
  2. Gulp - npm install -g gulp
  3. Bower - npm install -g bower
  4. Nginx (Optional. Use the web server of your choice*)

Setup

npm install
bower install
git submodule update --init 

Building

Running gulp build will generate all necessary files and assets and place them in the build folder.

Hosting Locally

If nginx is installed you can run gulp serve to use the nginx.conf provided. This will run an instance of nginx and serve the build folder on port 3300.

Running gulp dev will build, serve, and then watch for changes.

*If you are using a different web server you can use gulp build and gulp watch to (re)generate the build folder as you make changes. It is recommended that the web server serve the build folder directly (as opposed to copying it's contents to another location).

Clone this wiki locally