All checks were successful
Backend Actions / build (push) Successful in 2m56s
16 lines
236 B
Makefile
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}}
|