From e62de6a82087161182eb669fc2b7a67d67b37cb4 Mon Sep 17 00:00:00 2001 From: Andrew Bradley Date: Fri, 18 Sep 2026 11:58:29 -0400 Subject: [PATCH] Codify justfile command to run a live preview of the docs --- justfile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..a9bc518 --- /dev/null +++ b/justfile @@ -0,0 +1,3 @@ +# Serve the docs locally with live reload. +serve: + npx --yes docsify-cli serve . --port 3000