* cmdrun path fixes

* rename file to setup+run
This commit is contained in:
mfahampshire
2023-11-06 14:01:20 +01:00
parent bf56696adc
commit 7ad5ff7770
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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)
@@ -1,4 +1,4 @@
# Client Setup
# Setup & Run
## Viewing command help
@@ -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 -->
```
~~~
@@ -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.
@@ -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 -->
```
~~~