From 0ad768a3a3edcd0741e6bfaa9785a421089e5f4b Mon Sep 17 00:00:00 2001 From: GW_MC <72297530+GWMCwing@users.noreply.github.com> Date: Tue, 11 Nov 2025 20:53:26 +0800 Subject: [PATCH] Add simulation command to justfile for container execution --- justfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..22fac2b --- /dev/null +++ b/justfile @@ -0,0 +1,7 @@ +simulate *args: + cd src/container && \ + if [ -n "{{args}}" ]; then \ + cargo run --bin container-simulate -- --db-type={{args}}; \ + else \ + cargo run --bin container-simulate; \ + fi