changes include: ipc, general utilities, flakes stuff w/ just, autopull script

This commit is contained in:
Andrei Cravtov
2025-08-25 17:33:40 +01:00
committed by GitHub
parent 5bfc99b415
commit ef5c5b9654
50 changed files with 3025 additions and 182 deletions

View File

@@ -1,3 +1,5 @@
import 'just-flake.just'
default:
@just --list
@@ -45,3 +47,9 @@ run n="1" clean="false":
if [ "{{clean}}" = "true" ]; then ./run.sh -rc; else ./run.sh -r; fi; \
done; \
fi
# remote debugging auto-runner command: TODO: find better place to put this??
# -> this pulls from upstream and wipes .exo folder, rebuilds & restarts
# -> TODO: maybe add a sync step for python deps ??
autorun-master:
uv run scripts/watch-pull-restart.py --cmd "uv run exo-master" --restart-cmd "rm -rf ~/.exo && just build-forwarder"