blob: f771f0e0d1b1e16e7f648d044c046e622a3af11a (
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
|
# Contributing
In order to get started, you need to install [yarn](https://yarnpkg.com/), and 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
```
## Testing
Before submitting a Pull Request, make sure that tests are passing. This can be
checked by running:
```
$ bundle exec rubocop
$ bundle exec rake
```
## Deploying
This is already handled through a Github action, so don't worry about it.
|