2024-10-01 17:48:10 +02:00
|
|
|
#!/usr/bin/env -S just --justfile
|
|
|
|
|
# ^ A shebang isn't required, but allows a justfile to be executed
|
|
|
|
|
# like a script, with `./justfile test`, for example.
|
|
|
|
|
|
|
|
|
|
doc:
|
|
|
|
|
cargo doc --no-deps
|
2022-12-09 21:19:18 +01:00
|
|
|
shell:
|
2022-12-14 13:58:44 +01:00
|
|
|
devenv shell
|
2025-01-12 16:38:43 +01:00
|
|
|
runcli:
|
|
|
|
|
RUST_LOG=info cargo run --bin=client_cli
|
|
|
|
|
runclibots:
|
|
|
|
|
RUST_LOG=info cargo run --bin=client_cli -- --bot dummy,dummy
|