···3344# Zola output
55public/
66+website.zip
6778# Local dev files
89.DS_Store
+12
website/justfile
···2020# Start development server with live reload
2121serve:
2222 zola serve
2323+2424+# Zip the contents of public/ (not the folder itself) for direct upload
2525+# to static hosts. Strips macOS junk (.DS_Store, __MACOSX resource forks).
2626+zip:
2727+ #!/usr/bin/env bash
2828+ set -euo pipefail
2929+ rm -f website.zip
3030+ (cd public && zip -r ../website.zip . -x '*.DS_Store' '__MACOSX/*' '._*')
3131+ echo "Wrote $(pwd)/website.zip"
3232+3333+# Full release: build optimized site, then zip for upload.
3434+release: build-release zip