This web page is build using quartz.
Modifications
So far no big modifications, just added the last modified date to the header (inspired by Chad’s garden).
Automatic building
Quartz is served from a host running docker. The compose file below creates a container that checks for file changes and new files, and then starts the build process with quartz build.
version: "3"
services:
quartz:
# check for new version: https://fleet.linuxserver.io/image?name=lsiobase/alpine
image: lsiobase/alpine:3.19
container_name: quartz
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
- DOCKER_MODS=linuxserver/mods:universal-package-install
- INSTALL_PACKAGES=bash|nodejs|npm|git|entr
- ENTR_INOTIFY_WORKAROUND=False
- GIT_TOKEN=${GIT_TOKEN}
command: s6-setuidgid 1000:1000 /quartz/startup.sh
volumes:
- /mnt/appdata/quartz:/quartz:z
Script for automatic building of the static page:
#!/bin/sh
export HOME=/quartz
cd /quartz
git config --global url."https://${GIT_TOKEN}:@github.com/".insteadOf "https://github.com/"
while sleep 1; do
find /quartz/content/ -name "*.md" | entr -snd "sleep 20; npx quartz build"
done