Skip to content

openearth/painting

Repository files navigation

Painting

Painting in numerical models

Getting Started

Make sure you have node.js (>=4.0) installed, preferably through your package manager or using nvm.

Install gulp, bower and the latest version of npm and a few test scripts globally:

$ npm install --global npm
$ npm install --global bower
$ npm install --global gulp
$ npm install --global eslint
$ npm install --global mocha
$ npm install --global istanbul

You can also install scss_lint if you want to check the stylesheets

$ gem install scss_lint

Install packages a

$ npm install
$ bower install

Run gulp:

Serve a local development website:

$ gulp serve

Build a static website:

$ gulp

Run the tests

$ gulp test

Run the ui tests

$ gulp serve:test

Inject dependencies in the html pages:

$ gulp wiredep

Check the javascript:

$ gulp lint

Check the stylesheets:

$ gulp lint:scss

Check the tests:

$ gulp lint:test