Files
nuchat/backend/Justfile
Fergus Molloy d700822dc8
All checks were successful
Backend Actions / build (push) Successful in 34s
Backend Actions / check (push) Successful in 1m15s
Backend Actions / test (push) Successful in 2m30s
fix lints
2025-07-22 00:34:23 +01:00

20 lines
401 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}}
lint *ARGS:
cargo clippy -- -Dwarnings -Dclippy::correctness -Wclippy::pedantic -Wclippy::perf -Aclippy::missing_errors_doc -Aclippy::missing_panics_doc {{ARGS}}