13 lines
331 B
Makefile
13 lines
331 B
Makefile
#!/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
|
|
shell:
|
|
devenv shell
|
|
runcli:
|
|
RUST_LOG=info cargo run --bin=client_cli
|
|
runclibots:
|
|
RUST_LOG=info cargo run --bin=client_cli -- --bot dummy,dummy
|