mirror of
https://github.com/Dichgrem/Blog.git
synced 2025-02-23 05:58:36 -05:00
9 lines
222 B
Makefile
9 lines
222 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 test`, for example.
|
||
|
|
||
|
# build site
|
||
|
build:
|
||
|
zola build && npx pagefind --site public
|
||
|
|