Skip to content
Amit Patel edited this page Apr 8, 2017 · 7 revisions
  1. Install Prerequisites.
  2. Doing Installation.
  3. Deploying locally.
  4. Running Local Server.

Prerequisites

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

Installation

To run locally for development.

  1. run npm install
  2. run jspm install

Deploying 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

Deploying to gh-pages

gulp bundle
gulp copy
gulp deploy
Clone this wiki locally