Files
freeswitch_chris/did_router/justfile

12 lines
228 B
Makefile
Raw Normal View History

2026-04-01 23:49:10 -04:00
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