mirror of
https://github.com/Dichgrem/Blog.git
synced 2025-02-22 13:38:37 -05:00
11 lines
292 B
Makefile
11 lines
292 B
Makefile
#!/usr/bin/env -S just --justfile
|
|
# ^ A shebang isn't required, but allows a justfile to be executed
|
|
# like a script, with `./justfile build`, for example.
|
|
|
|
# Task thet using Zola and Pagefindo build site
|
|
build:
|
|
# Build the si\
|
|
te with Zola
|
|
zola build && npx pagefind --site public
|
|
|