blob: dc1eebb8c2c6fdf06ecc5099ee1ddaaad2d6f17b (
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
|
# Building
First build all the libraries, described below, then run:
grunt
Or, to build for release (with smaller js and css files):
grunt release
# Building the libraries
## jquery
npm run build
## bootstrap
npm install
grunt dist
## leaflet-soton
git submodule update --init
### leaflet
npm install -g jake
npm install
This requires a local OSM database, and to setup config.json (use the template
config.json.default).
./create-data.js
## list.js
npm install
grunt dist
## typeahead.js
npm install
grunt
|