Skip to content
Amit Patel edited this page Apr 8, 2017 · 7 revisions

Prerequisites

  • Node.js version 0.10.0 or newer
  • Install jspm, eslint, gulp globally
npm install -g jspm
npm install -g gulp

Installation

To run locally for development.

npm install
jspm install

Testing locally

gulp bundle
gulp copy

To serve the pages using python2:

cd build
python -m SimpleHTTPServer 80

To serve the pages using python3:

cd build
python -m http.server 80

Then visit http://localhost/

Deploying to gh-pages

gulp bundle
gulp copy
gulp deploy
Clone this wiki locally