[docs](trx-rs): add trx-configurator step to README quick start

Show the interactive setup wizard as the primary way to generate
trx-server.toml and trx-client.toml, with --print-config as an alternative.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-29 14:11:37 +02:00
parent acd6ee93df
commit 52a244da19
+29 -6
View File
@@ -67,19 +67,42 @@ brew install soapysdr
See [Build Requirements](https://github.com/sgrams/trx-rs/wiki/User-Manual#build-requirements) See [Build Requirements](https://github.com/sgrams/trx-rs/wiki/User-Manual#build-requirements)
in the wiki for details on each library. in the wiki for details on each library.
### 2. Build and run ### 2. Build
```bash ```bash
cargo build --release cargo build --release
cp trx-rs.toml.example trx-rs.toml # edit for your environment ```
cargo run -p trx-server
cargo run -p trx-client Build without SDR support: `cargo build --release --no-default-features`
### 3. Configure
Run the interactive setup wizard to generate config files for your station:
```bash
./target/release/trx-configurator
```
The wizard walks you through rig selection, serial port detection, audio
settings, and frontend options, then writes `trx-server.toml` and
`trx-client.toml`.
Alternatively, generate example configs and edit them by hand:
```bash
./target/release/trx-server --print-config > trx-server.toml
./target/release/trx-client --print-config > trx-client.toml
```
### 4. Run
```bash
./target/release/trx-server --config trx-server.toml
./target/release/trx-client --config trx-client.toml
``` ```
Open the configured HTTP frontend address in a browser (default `http://localhost:8080`). Open the configured HTTP frontend address in a browser (default `http://localhost:8080`).
Build without SDR support: `cargo build --release --no-default-features`
## How It Works ## How It Works
```mermaid ```mermaid