1
0
Fork 0
mornie.org/justfile
2023-02-07 02:29:23 +01:00

12 lines
155 B
Makefile

# build the site
build: clean
@zola build
# remove built site
clean:
rm -rf public
# run devel server with drafts enabled
serve:
@zola serve --drafts