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