khguide/justfile

18 lines
233 B
Plaintext
Raw Normal View History

2025-06-25 11:39:48 +03:00
set export
set quiet
2025-06-30 00:18:20 +03:00
set dotenv-load
2025-06-25 11:39:48 +03:00
2025-10-31 22:23:30 +02:00
build:
2025-06-30 00:18:20 +03:00
#!/usr/bin/env bash
2025-06-25 11:39:48 +03:00
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