blog/justfile

14 lines
341 B
Makefile
Raw Normal View History

2024-10-03 17:07:46 +02:00
# use PowerShell instead of sh:
2024-10-18 08:50:32 +02:00
set shell := ["powershell.exe", "-c"]
2024-10-03 17:07:46 +02:00
# view the blog as it would be published in a browser
view:
zola serve -f
2024-10-03 17:07:46 +02:00
# view the blog with drafts in a browser
view-drafts:
zola serve --drafts -f
2024-10-18 08:50:32 +02:00
build-con:
docker build --platform linux/amd64,linux/arm64 -t git.grobecker.me/erik/blog:latest --push .