Skip to content

Commit

Permalink
* cmdrun path fixes
Browse files Browse the repository at this point in the history
* rename file to setup+run
  • Loading branch information
mfahampshire committed Nov 6, 2023
1 parent bf56696 commit 7ad5ff7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion documentation/docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# Clients
- [Clients Overview](clients/overview.md)
- [Websocket Client](clients/websocket-client.md)
- [Client Setup](clients/websocket/setup.md)
- [Setup & Run](clients/websocket/setup.md)
- [Configuration](clients/websocket/config.md)
- [Using Your Client](clients/websocket/usage.md)
- [Socks5 Client](clients/socks5-client.md)
Expand Down
8 changes: 4 additions & 4 deletions documentation/docs/src/clients/websocket/setup.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Client Setup
# Setup & Run

## Viewing command help

Expand All @@ -10,7 +10,7 @@ You can check that your binaries are properly compiled with:

~~~admonish example collapsible=true title="Console output"
```
<!-- cmdrun ../../../../target/release/nym-client --help -->
<!-- cmdrun ../../../../../target/release/nym-client --help -->
```
~~~

Expand All @@ -25,7 +25,7 @@ You can check the necessary parameters for the available commands by running:
./nym-client <command> --help
```

### Initialising your client
## Initialising your client

Before you can use the client, you need to initalise a new instance of it. Each instance of the client has its own public/private keypair, and connects to its own gateway node. Taken together, these 3 things (public/private keypair + gateway node identity key) make up an app's identity.

Expand All @@ -37,7 +37,7 @@ Initialising a new client instance can be done with the following command:

~~~admonish example collapsible=true title="Console output"
```
<!-- cmdrun ../../../../target/release/nym-client init --id example-client -->
<!-- cmdrun ../../../../../target/release/nym-client init --id example-client -->
```
~~~

Expand Down

0 comments on commit 7ad5ff7

Please sign in to comment.