fixing pane in client for accounting + debug optimizations to run

This commit is contained in:
Priec
2026-08-14 07:45:36 +02:00
parent b2f141ccba
commit 85602159f4
10 changed files with 55 additions and 4 deletions

View File

@@ -20,8 +20,18 @@ libraries.
Server and client:
```
cargo watch --why -x 'run --package server -- server'
cargo watch -x 'run --package client -- client'
cargo watch-server
cargo watch-client
```
These aliases only watch each application's local dependency tree. They build
through Cargo, then run the binary separately so concurrent tests can reuse the
same build cache.
To connect a client to a second server instance, override its gRPC endpoint:
```
GRPC_ENDPOINT='http://[::1]:50052' cargo watch-client
```
Client with tracing: