We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c9bc03a + 3a778bd commit b32d8d0Copy full SHA for b32d8d0
1 file changed
README.md
@@ -2,7 +2,38 @@
2
3
This is the website for OpenIndexMaps.org
4
5
-## Build process
+## Installation
6
+Requires both Ruby (to run Jekyll) and JavaScript / NPM to compile JavaScript
7
+
8
+### Building JavaScript
9
+Install JavaScript dependencies
10
+```sh
11
+$ npm install
12
+```
13
14
+Building JavaScript
15
16
+$ npx webpack
17
18
19
+Continously watch and build
20
21
+$ npx webpack --watch
22
23
24
+### Building Jekyll site
25
+Install Jekyll and Ruby dependencies
26
27
+$ bundle install
28
29
30
+Running Jekyll
31
32
+$ bundle exec jekyll serve
33
34
35
36
+## Build process on Netlify
37
```sh
38
npm i; npx webpack; jekyll build
39
```
0 commit comments