yotei/justfile

21 lines
392 B
Makefile
Raw Normal View History

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:
cargo run --bin head-node --features="head"
2024-09-11 22:18:22 +02:00
worker-node *ARGS:
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}}"