about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2024-06-13T19·04+0300
committerclbot <clbot@tvl.fyi>2024-06-14T08·00+0000
commit6947dc4349fa85cb702f46acfe3255c907096b12 (patch)
tree50d50d214a20901b29944e20b722489e0e1c3253
parentadc7353bd16d07e13efb7f6a84b9f93601a07705 (diff)
chore(tvix/docs): move [ca]store docs to tvix/docs r/8269
Change-Id: Idd78ffae34b6ea7b93d13de73b98c61a348869fb
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11808
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: flokli <flokli@flokli.de>
-rw-r--r--tvix/docs/src/SUMMARY.md7
-rw-r--r--tvix/docs/src/castore/blobstore-chunking.md (renamed from tvix/castore/docs/blobstore-chunking.md)0
-rw-r--r--tvix/docs/src/castore/blobstore-protocol.md (renamed from tvix/castore/docs/blobstore-protocol.md)0
-rw-r--r--tvix/docs/src/castore/data-model.md (renamed from tvix/castore/docs/data-model.md)0
-rw-r--r--tvix/docs/src/castore/why-not-git-trees.md (renamed from tvix/castore/docs/why-not-git-trees.md)0
-rw-r--r--tvix/docs/src/store/api.md (renamed from tvix/store/docs/api.md)0
-rw-r--r--tvix/store/default.nix2
7 files changed, 8 insertions, 1 deletions
diff --git a/tvix/docs/src/SUMMARY.md b/tvix/docs/src/SUMMARY.md
index 5ae1647e4125..7c25c55ee4d9 100644
--- a/tvix/docs/src/SUMMARY.md
+++ b/tvix/docs/src/SUMMARY.md
@@ -4,6 +4,13 @@
 - [Architecture & data flow](./architecture.md)
 - [TODOs](./TODO.md)
 
+# Store
+- [Store API](./store/api.md)
+- [BlobStore Chunking](./castore/blobstore-chunking.md)
+- [BlobStore Protocol](./castore/blobstore-protocol.md)
+- [Data Model](./castore/data-model.md)
+- [Why not git trees?](./castore/why-not-git-trees.md)
+
 # Nix
 - [Specification of the Nix Language](./language-spec.md)
 - [Nix language version history](./lang-version.md)
diff --git a/tvix/castore/docs/blobstore-chunking.md b/tvix/docs/src/castore/blobstore-chunking.md
index df3c29680257..df3c29680257 100644
--- a/tvix/castore/docs/blobstore-chunking.md
+++ b/tvix/docs/src/castore/blobstore-chunking.md
diff --git a/tvix/castore/docs/blobstore-protocol.md b/tvix/docs/src/castore/blobstore-protocol.md
index 048cafc3d877..048cafc3d877 100644
--- a/tvix/castore/docs/blobstore-protocol.md
+++ b/tvix/docs/src/castore/blobstore-protocol.md
diff --git a/tvix/castore/docs/data-model.md b/tvix/docs/src/castore/data-model.md
index 5e6220cc23fa..5e6220cc23fa 100644
--- a/tvix/castore/docs/data-model.md
+++ b/tvix/docs/src/castore/data-model.md
diff --git a/tvix/castore/docs/why-not-git-trees.md b/tvix/docs/src/castore/why-not-git-trees.md
index 4a12b4ef5554..4a12b4ef5554 100644
--- a/tvix/castore/docs/why-not-git-trees.md
+++ b/tvix/docs/src/castore/why-not-git-trees.md
diff --git a/tvix/store/docs/api.md b/tvix/docs/src/store/api.md
index c5a5c477aa17..c5a5c477aa17 100644
--- a/tvix/store/docs/api.md
+++ b/tvix/docs/src/store/api.md
diff --git a/tvix/store/default.nix b/tvix/store/default.nix
index 78b499114cae..3fe47fe60b11 100644
--- a/tvix/store/default.nix
+++ b/tvix/store/default.nix
@@ -33,7 +33,7 @@ in
 })).overrideAttrs (old: rec {
   meta.ci = {
     targets = [ "integration-tests" ] ++ lib.filter (x: lib.hasPrefix "with-features" x || x == "no-features") (lib.attrNames passthru);
-    extraSteps.import-docs = (mkImportCheck "tvix/store/docs" ./docs);
+    extraSteps.import-docs = (mkImportCheck "tvix/docs/src/store" ../docs/src/store);
   };
   passthru = (depot.tvix.utils.mkFeaturePowerset {
     inherit (old) crateName;