2024-09-03 16:21:59 +02:00
|
|
|
default:
|
|
|
|
@just --list
|
|
|
|
|
|
|
|
# Auto-format the source tree
|
|
|
|
fmt:
|
|
|
|
treefmt
|
|
|
|
|
|
|
|
# Run 'cargo run' on the project
|
|
|
|
run *ARGS:
|
|
|
|
cargo run {{ARGS}}
|
|
|
|
|
2024-09-11 22:18:22 +02:00
|
|
|
head-node *ARGS:
|
2024-09-17 16:56:52 +02:00
|
|
|
cargo run --bin head-node --features="head"
|
2024-09-11 22:18:22 +02:00
|
|
|
|
|
|
|
worker-node *ARGS:
|
2024-09-17 16:56:52 +02:00
|
|
|
cargo run --bin worker-node --features="worker"
|
2024-09-11 22:18:22 +02:00
|
|
|
|
2024-09-03 16:21:59 +02:00
|
|
|
# Run 'cargo watch' to run the project (auto-recompiles)
|
|
|
|
watch *ARGS:
|
|
|
|
cargo watch -x "run -- {{ARGS}}"
|