Files
org-garden/README.org
Ignacio Ballesteros 6b132b86e8 Initial commit
2026-02-21 14:50:52 +01:00

824 B

org-garden

An org-roam to static website publishing pipeline. Converts .org notes into a rendered site using Emacs/ox-hugo for export and Quartz 4 for site generation.

Usage

org-garden serve  <notes-dir>   # dev server with live reload
org-garden build  <notes-dir>   # production static build
org-garden export <notes-dir>   # org → markdown only

Running with Nix (recommended)

nix run . -- serve <notes-dir>
nix run . -- build <notes-dir>

Running with Mix

mix deps.get
mix escript.build
./org_garden serve <notes-dir>

Requires QUARTZ_PATH to point to a Quartz install with node_modules for serve and build commands.