blob: f126b52bc2bc05f5e3566a35eba911678706f43c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Run the local HTTP server
run:
zola serve
# Generate the content of the site under ./docs
build:
nix build
# Format files
fmt:
nix fmt
check:
nix flake check
# Check that all the links are valid
check-links: build
lychee ./result/**/*.html
# Update flake dependencies
update-deps:
nix flake update --commit-lock-file
|