From 7b051d031ec04c994d7de5a54ef877c432d3be89 Mon Sep 17 00:00:00 2001 From: Collin Jackson Date: Thu, 5 Sep 2024 01:44:27 -0700 Subject: [PATCH] Documentation changes --- clients/cli/README.md | 14 ++------------ public/install.sh | 2 ++ 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/clients/cli/README.md b/clients/cli/README.md index e3effcb..5acdebf 100644 --- a/clients/cli/README.md +++ b/clients/cli/README.md @@ -4,21 +4,11 @@ Command line interface (CLI) for accessing the Nexus Network. Highest-performanc ## Quick start -Ensure that you have Rust. - ``` -curl https://sh.rustup.rs -sSf | sh +curl https://network-cli.nexus.xyz/install.sh | sh ``` -Get the CLI and run it: - -``` -git clone https://github.com/nexus-xyz/network-cli -cd network-cli -cargo run --bin prover -- dev.orchestrator.nexus.xyz -``` - -Note: Hostname will default to `orchestrator.nexus.xyz` in the public beta release. +If you do not already have Rust, you will be prompted to install it. ## Known issues diff --git a/public/install.sh b/public/install.sh index 280fb88..50918f2 100755 --- a/public/install.sh +++ b/public/install.sh @@ -9,4 +9,6 @@ else git clone git@github.com:nexus-xyz/network-cli --branch @collinjackson/proving $NEXUS_HOME fi +# Note: Hostname will default to `orchestrator.nexus.xyz` in the public beta release. + (cd $NEXUS_HOME/clients/cli && cargo run --release --bin prover -- dev.orchestrator.nexus.xyz)