blob: e6b90c1bd0b5e543d1b4a375b059cc14a584daa7 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Build the blog.
```
guix build -f make.scm
```
List the built blog
```
tree $(guix build -f make.scm)
```
Host it on a darkhttpd server listening on localhost, and check it out on your web browser.
```
darkhttpd $(guix build -f make.scm) --addr 127.0.0.1
```
|