Add simulation command to justfile for container execution

This commit is contained in:
GW_MC
2025-11-11 20:53:26 +08:00
parent 6b3172d88b
commit 0ad768a3a3

7
justfile Normal file
View File

@@ -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