Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.
theofidry edited this page Dec 16, 2014 · 3 revisions

Welcome to the nodejs-ECEProject wiki!

This doc is dedicated to detail more the layout and dev tools of the project.

Architecture

.
├── assets                # Assets: style, js, images...
├── lib                   # core components
|   ├── config            # App config
|   └── app.js            # main file of the application
├── public                # web root
├── test                  # Unit tests
└── views                 # JADE templates            

Update

Update the project:

npm update

For development purpose, install the development dependencies:

npm update --save-dev

Grunt tasks

Publish assets

// CSS
grunt css       // prod
grunt css-dev   // dev

// Everything
grunt publish   // prod
grunt build     // dev

Watch task

grunt watch

Run tests

npm test

Clone this wiki locally