blob: ae7f83a8691da777e5277382f25acc8cbfc1fa71 (
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
|
# jo
Files for my personal website. In order to get started, you need to install
[yarn](https://yarnpkg.com/), [git](https://git-scm.com/) (yeah, it's actually a
dependency) and you need a proper ruby development environment (with bundler
already installed). Then, you can simply fetch dependencies like so:
```
$ yarn
$ bundle
```
After that, build Javascript files with:
```
$ yarn run webpack
```
And in another session start Jekyll with:
```
$ bundle exec jekyll serve
```
If you just want to **deploy**, simply run:
```
$ ./script/build.sh
```
This will write everything into a `_site` directory. Use this directory to serve
all files.
## License
This project is licensed under the AGPLv3. See [LICENSE](./LICENSE) for the full
license text.
|