soundboard/Justfile

15 lines
200 B
Makefile

default:
@just hello
run:
@cargo run main
bin args='':
@cargo run --bin {{args}}
hello:
@echo "Hello, world!"
watch:
cargo watch -c -q -w src -w templates -x run