Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Sep 14, 2023
1 parent efe5f2d commit 497a64e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
16 changes: 14 additions & 2 deletions docs/docs/dev_docs/getting_started/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,22 @@ Or if you use yarn:
yarn global add @aztec/cli
```

Then verify that it is installed with:
If you have specified a SANDBOX_VERSION environmental variable when installing sandbox, you will need to specify the same version when installing the CLI. For example:

```bash
aztec-cli -h
npm install -g @aztec/[email protected]
```

or if you use yarn:

```bash
yarn global add @aztec/[email protected]
```

Verify that the correct version is installed:

```bash
aztec-cli --version
```

## I have the Sandbox running, now what?
Expand Down
8 changes: 8 additions & 0 deletions docs/docs/dev_docs/getting_started/sandbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,14 @@ Alternatively you can open a new terminal and use aztec-cli to get the version.
aztec-cli get-node-info
```

:::note

Versions of `sandbox` and `aztec-cli` must match.
If `aztec-cli --version` does not return the same version as `SANDBOX_VERSION` then you need to install the correct version of `aztec-cli`.
See [this section](./cli.md#requirements) for how to accomplish that.

:::

## Next Steps
Here we showed how to interact with the sandbox, but didn't go into details on how to write your own contract or any relevant setup needed for it.

Expand Down

0 comments on commit 497a64e

Please sign in to comment.