yotei/justfile
xqtc c677a142dd
All checks were successful
/ build (push) Successful in 1m16s
/ clippy (push) Successful in 1m21s
Idk i should rly commit when i am done and not 2 days later
2024-09-17 16:56:52 +02:00

21 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}}"