-
Notifications
You must be signed in to change notification settings - Fork 0
/
FAQ
23 lines (15 loc) · 838 Bytes
/
FAQ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Frequently Asked Questions (FAQ)
================================
## How do I **build on the fly** like `jekyll serve`?
Use `find | entr sh -c 'make'` to build when files have changed. In addition,
replace `make` with `pkill surf` or kill the surf pid to reload the browser
on the fly.
## How do I put my site following this directory and test it?
Replace `$(TARG)` with `_site` (directories with `_` are ignored). Enter the
directory `_site`, run `python -m http.server` and open `http://127.0.0.1:8000`
in a browser.
## How do I check for **link rot** directed to my site?
Use `wget --no-proxy --spider -r -nH -nd -np -nv -e robots=off -p ${HOST}`,
note that this doesn't work on checking link directing to other domains.
## How do I build it together with a few slow computers (cluster computing)?
I am still researching this.