26 lines
479 B
Markdown
26 lines
479 B
Markdown
# Hey
|
|
|
|
This is only work in progress, until release 1.0.0 this is for development use cases only.
|
|
|
|
I run development like this:
|
|
|
|
Server:
|
|
```
|
|
cargo watch -x 'run --package server -- server'
|
|
```
|
|
|
|
Client:
|
|
```
|
|
cargo watch -x 'run --package client -- client'
|
|
```
|
|
|
|
Client with tracing:
|
|
```
|
|
ENABLE_TRACING=1 RUST_LOG=client=debug cargo watch -x 'run --package client -- client'
|
|
```
|
|
|
|
Client with debug that cant be traced
|
|
```
|
|
cargo run --package client --features ui-debug -- client
|
|
```
|