Files
nuchat/backend/Justfile
2025-07-21 17:18:00 +01:00

18 lines
348 B
Makefile

build:
cargo build --features shutdown
run:
cargo run --features shutdown
start:
cargo run --features shutdown 2>&1 > logs/nuchat.log
test:
cargo run --features shutdown -- --port 7001 2>&1 > logs/nuchat.log &
cargo test
curl -s -X POST localhost:7001/admin/shutdown
default := 'run'
watch CMD=default:
watchexec -w src -r just {{CMD}}