diff options
author | Ilan Joselevich <personal@ilanjoselevich.com> | 2024-07-30T12·09+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-07-30T13·10+0000 |
commit | b21ca2ac26d93f5785211ea2702c9514deb8097b (patch) | |
tree | b03dbd6284535017e3dfb8fda2b2e91d3675018c | |
parent | e682e5ce2a9e5da5e3c70617fbfeb0c7ad091547 (diff) |
docs(tvix/boot): Update README example r/8429
It was previously pointing to a sled implementation which no longer exists. It was also using nar-bridge-go instead of the new nar-bridge (rust). Closes: https://b.tvl.fyi/issues/413 Change-Id: Id0df61d4728198c3ae95a8e27ba7303434892966 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12063 Reviewed-by: aspen <root@gws.fyi> Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com>
-rw-r--r-- | tvix/boot/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tvix/boot/README.md b/tvix/boot/README.md index 9c7b722a7abb..5d5ab41e7323 100644 --- a/tvix/boot/README.md +++ b/tvix/boot/README.md @@ -34,7 +34,7 @@ export PATH=$PATH:$PWD/target/release-with-debug Secondly, configure tvix to use the local backend: ``` -export BLOB_SERVICE_ADDR=sled://$PWD/blobs.sled +export BLOB_SERVICE_ADDR=objectstore+file://$PWD/blobs export DIRECTORY_SERVICE_ADDR=sled://$PWD/directories.sled export PATH_INFO_SERVICE_ADDR=sled://$PWD/pathinfo.sled ``` @@ -43,9 +43,9 @@ Potentially copy some data into tvix-store (via nar-bridge): ``` mg run //tvix:store -- daemon & -$(mg build //tvix:nar-bridge-go)/bin/nar-bridge-http & +mg run //tvix:nar-bridge -- & rm -Rf ~/.cache/nix; nix copy --to http://localhost:9000\?compression\=none $(mg build //third_party/nixpkgs:hello) -pkill nar-bridge-http; pkill tvix-store +pkill nar-bridge; pkill tvix-store ``` #### Interactive shell |