Add just build system

This commit is contained in:
2026-04-01 23:49:10 -04:00
parent 75aa6129b6
commit 6a720f7364
3 changed files with 50 additions and 0 deletions

12
did_router/justfile Normal file
View File

@@ -0,0 +1,12 @@
build:
cargo build --release
install: build
cargo install --path . --root /usr/local
cp .env /etc/did_router.conf
uninstall:
rm -f /usr/local/bin/did_router
rm -f /etc/did_router.conf
clean:
cargo clean