Skip to content

Commit bc85434

Browse files
committed
fix(docs): update oxidoc.toml sidebar paths and cross-links
Follow-up to 78268bd — the previous commit only captured the file renames, not the content updates. This commit lands the sidebar path updates in oxidoc.toml, the internal cross-link fix in crdt.rdx, and the README directory tree. Without this, oxidoc build fails with "Page not found: data-modeling/vector" since the sidebar still pointed at the old paths.
1 parent 78268bd commit bc85434

3 files changed

Lines changed: 20 additions & 17 deletions

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ Built with [Oxidoc](https://oxidoc.dev). Published at [nodedb.dev](https://noded
1010
docs/
1111
├── introduction/ Getting started, installation, Docker
1212
├── architecture/ Three-plane model, storage, cluster topology
13-
├── data-modeling/ Engines (Vector, Graph, Document, Columnar, KV, FTS, CRDT), indexes
13+
├── data-modeling/ Collections and schemas/types
14+
├── storage-engines/ Vector, Graph, Document, Columnar, KV, FTS, CRDT
15+
├── columnar-profiles/ Timeseries, Spatial
16+
├── indexes/ HNSW, CSR, R-tree, B-tree, inverted, hash
1417
├── sql/ SQL reference, engine-specific queries, EXPLAIN
1518
├── real-time/ LIVE SELECT, change streams, webhooks, cron
1619
├── connectivity/ pgwire, HTTP, native protocol, RESP, ILP, client libraries

docs/storage-engines/crdt.rdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ Deltas that persistently fail constraint validation are routed to a dead-letter
4747
## Related
4848

4949
- [CRDT Sync](/docs/crdt-sync/overview) — Full sync protocol and offline patterns
50-
- [Document Engine](/docs/data-modeling/document) — Schemaless documents with CRDT sync
50+
- [Document Engine](/docs/storage-engines/document) — Schemaless documents with CRDT sync

oxidoc.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -55,25 +55,25 @@ navigation = [
5555
"data-modeling/schemas-types",
5656
] },
5757
{ group = "Storage Engines", pages = [
58-
"data-modeling/vector",
59-
"data-modeling/graph",
60-
"data-modeling/document",
61-
"data-modeling/columnar",
62-
"data-modeling/kv",
63-
"data-modeling/fts",
64-
"data-modeling/crdt",
58+
"storage-engines/vector",
59+
"storage-engines/graph",
60+
"storage-engines/document",
61+
"storage-engines/columnar",
62+
"storage-engines/kv",
63+
"storage-engines/fts",
64+
"storage-engines/crdt",
6565
] },
6666
{ group = "Columnar Profiles", pages = [
67-
"data-modeling/timeseries",
68-
"data-modeling/spatial",
67+
"columnar-profiles/timeseries",
68+
"columnar-profiles/spatial",
6969
] },
7070
{ group = "Indexes", pages = [
71-
"data-modeling/hnsw-index",
72-
"data-modeling/csr-index",
73-
"data-modeling/rtree-index",
74-
"data-modeling/btree-index",
75-
"data-modeling/inverted-index",
76-
"data-modeling/hash-index",
71+
"indexes/hnsw-index",
72+
"indexes/csr-index",
73+
"indexes/rtree-index",
74+
"indexes/btree-index",
75+
"indexes/inverted-index",
76+
"indexes/hash-index",
7777
] },
7878

7979
# ── SQL Reference ──────────────────────────────────────────────

0 commit comments

Comments
 (0)