-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME
More file actions
48 lines (32 loc) · 648 Bytes
/
README
File metadata and controls
48 lines (32 loc) · 648 Bytes
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
46
47
# WebSite
This website is built using Jekyll
## Prerequisites
Install ruby
```
$ sudo apt install ruby-full build-essentials
```
## Install Jekyll
```
$ sudo gem install jekyll bundler
```
## Development
In the root of the folder run:
```
$ bundle init
$ bundle install
$ bundle add jekyll
```
Then run the jekyll server:
```
bundle exec jekyll serve [--livereload]
```
The option `--livereload` watches for changes to the site during development.
If this command fails add `webrick` to dependencies:
```
bundle add webrick
```
## Build
```
$ jekyll build
```
Builds the site and outputs a static site to a directory called _site.