khguide/justfile

21 lines
310 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-06-30 00:18:20 +03:00
build publish="false":
#!/usr/bin/env bash
if [ "{{publish}}" = false ]; then
export BASE_URL=""
fi
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