feat: Install via zip (#3)

This commit is contained in:
Collin Jackson 2024-09-25 09:03:20 -07:00 committed by GitHub
parent a49a35c191
commit 8607fa91c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,13 +2,18 @@
rustc --version || curl https://sh.rustup.rs -sSf | sh rustc --version || curl https://sh.rustup.rs -sSf | sh
NEXUS_HOME=$HOME/.nexus NEXUS_HOME=$HOME/.nexus
CLI_ZIP=/tmp/nexus-network-api.zip
curl -L --verbose "https://docs.google.com/uc?export=download&id=1kcbEeKpVEyvIqL-_cgR5sYdZe_fOEPs6" > $CLI_ZIP
if [ -d "$NEXUS_HOME" ]; then if [ -d "$NEXUS_HOME" ]; then
echo "$NEXUS_HOME exists. Updating."; echo "$NEXUS_HOME exists. Updating.";
(cd $NEXUS_HOME && git pull) (cd $NEXUS_HOME && rm -rf network-api && unzip $CLI_ZIP)
# TODO: Once GitHub repo is public, do this instead
# (cd $NEXUS_HOME && git pull)
else else
git clone git@github.com:nexus-xyz/network-cli --branch @collinjackson/proving $NEXUS_HOME # TODO: Once GitHub repo is public, do this instead
# git clone git@github.com:nexus-xyz/network-cli $NEXUS_HOME
mkdir -p $NEXUS_HOME
(cd $NEXUS_HOME && unzip $CLI_ZIP)
fi fi
# Note: Hostname will default to `orchestrator.nexus.xyz` in the public beta release. (cd $NEXUS_HOME/network-api/clients/cli && cargo run --release --bin prover -- beta.orchestrator.nexus.xyz)
(cd $NEXUS_HOME/clients/cli && cargo run --release --bin prover -- dev.orchestrator.nexus.xyz)