khguide/justfile

16 lines
196 B
Plaintext
Raw Normal View History

2025-06-25 11:39:48 +03:00
set export
set quiet
build:
mkdir -p ./out
rm -rf ./out/*
cargo run
cp -r ./public ./out/public
test:
cargo test
format:
cargo fix --allow-dirty --allow-staged
cargo fmt -- --emit=files