From 725535c8d7d5b68821c2455e1cad3438580d4082 Mon Sep 17 00:00:00 2001 From: Brummel Date: Wed, 20 May 2026 22:24:22 +0200 Subject: [PATCH] docs: add README with build and deploy instructions --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d1daf38 --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# Praxis am Lienhardplatz — Static Site + +Static rebuild of the practice website, replacing the previous Grav 1.4.3 installation. + +## Build + +```fish +zola build # production build → ./public/ +zola serve # dev server with auto-reload → http://127.0.0.1:1111 +``` + +## Deploy (staging) + +```fish +zola build +rsync -av --delete public/ mycelium:public/praxis/ +``` + +Staging URL: `https://preview.praxis-am-lienhardplatz.de` + +## Layout + +- `content/` — Markdown pages +- `templates/` — Tera templates +- `static/` — verbatim assets (JS, CSS, fonts, images) +- `sass/` — SCSS sources (compiled by Zola) +- `docs/specs/` — design specs +- `docs/plans/` — implementation plans + +The directory `orig/` (gitignored) is a read-only snapshot of the previous Grav installation, kept as a reference for content and visual parity.