blob: b4e3f16abb00897be0c0f80806b38b8cde27f572 (
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
|
# pantry-of-plants
The making of a new vegan cooking/baking blog with a focus on simplicity and legibility.
## Development Setup
We suggest using [chruby](https://github.com/postmodern/chruby) and [ruby-install](https://github.com/postmodern/ruby-install):
```sh
ruby-install ruby-$(cat .ruby-version)
chruby $(cat .ruby-version)
ruby --version # 2.7.4
```
Then install the required gems:
```sh
bundle install
```
and finally generate the blog!
```sh
sh build_website.sh
open output/index.html
```
|