yotei/justfile

20 lines
392 B
Makefile

default:
@just --list
# Auto-format the source tree
fmt:
treefmt
# Run 'cargo run' on the project
run *ARGS:
cargo run {{ARGS}}
head-node *ARGS:
cargo run --bin head-node --features="head"
worker-node *ARGS:
cargo run --bin worker-node --features="worker"
# Run 'cargo watch' to run the project (auto-recompiles)
watch *ARGS:
cargo watch -x "run -- {{ARGS}}"