Files
nuchat/backend/Justfile
Fergus Molloy 2e28aa6b54
Some checks failed
Backend Actions / build (push) Failing after 1m16s
add basic backend workflow
2025-07-21 23:58:21 +01:00

16 lines
236 B
Makefile

build:
cargo build --features shutdown
run:
cargo run --features shutdown
start:
cargo run --features shutdown 2>&1 > logs/nuchat.log
test:
./scripts/test.sh
default := 'run'
watch CMD=default:
watchexec -w src -r just {{CMD}}