From d976c22683f721f004c3f24c185a92d15d6db699 Mon Sep 17 00:00:00 2001 From: GW_MC <72297530+GWMCwing@users.noreply.github.com> Date: Sun, 5 Jul 2026 05:29:05 +0000 Subject: [PATCH] chore: add .act/ to gitignore and fix dev-agent command - Add .act/ to .gitignore - Change dev-agent to run with --release flag --- .gitignore | 1 + justfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b627e2e..aea5b13 100644 --- a/.gitignore +++ b/.gitignore @@ -161,5 +161,6 @@ target **/mutants.out*/ .local/ +.act/ certs/ diff --git a/justfile b/justfile index 4330597..6928399 100644 --- a/justfile +++ b/justfile @@ -54,7 +54,7 @@ dev-master *ARGS: dev-agent *ARGS: @echo "🔧 Starting Rust agent..." - cargo watch -w apps/nxmesh-agent -x 'run --bin nxmesh-agent -- {{ ARGS }}' + cargo watch -w apps/nxmesh-agent -x 'run --bin nxmesh-agent --release -- {{ ARGS }}' # Start Vite frontend development server dev-frontend: