Development Setup
Prerequisites
- Docker with Compose v1 (or Compose plugin)
- Access to the
traefikexternal Docker network on the host .npmrcwith@graviolaregistry configured
Starting the Dev Stack
docker-compose -f docker-compose.dev.yml up -d
This starts:
- oxigraph — RDF triplestore on the internal network
- oxigraph-cors — NGINX CORS proxy →
sparql01.pergola.kuenste.live - frontend-dev — Bun/Vite dev server →
dev01.pergola.kuenste.live - docs — MkDocs Material (this site) →
docs01.pergola.kuenste.live
Dependency Management
The frontend uses a materialized package_materialized.json to resolve
workspace:* and catalog: Bun monorepo references into concrete npm versions.
To regenerate after a package.json change (run from inside the graviola monorepo):
bun run materialize-deps
Hot Reload
Both the frontend (Vite HMR via WSS) and this documentation site (MkDocs watch) reload automatically on file changes. No container restart needed.