Files
soundboard/Justfile
2024-01-20 21:11:31 +01:00

18 lines
241 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
release:
@cargo build --release