shelly/justfile
2025-05-11 22:23:47 -05:00

16 lines
168 B
Makefile

default:
list
run:
RUST_LOG=debug cargo run
build:
cargo build
watch:
RUST_LOG=debug cargo watch -- cargo run
alias r := run
alias b := build