khguide/justfile

18 lines
233 B
Plaintext

set export
set quiet
set dotenv-load
build:
#!/usr/bin/env bash
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