summaryrefslogtreecommitdiffstats
path: root/README.md
blob: a1a634b7e1cc881245a5e1867f5a9909f1737e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Glances website

## Installation

Install Bower :
```
npm install -g bower
```

Install Brunch :
```
npm install -g brunch
```

Install npm dependencies :
```
npm install
```

Install bower dependencies :
```
bower install
```

## Usage

All development assets files are in the `app` directory and are automatically built/copied into `public` directory by Brunch.

Run the following command before starting to code :
```
brunch watch
```

Or run this one for one shot build :
```
brunch build
```

## How to contribute ?

In order to optimize css and js files for production, always run the following command before push :

```
brunch build -P
```