Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
simulation: Add recipe to justfile
Adrian Duke committed 25 days ago
commit 0f8a5c6bc63a47b6beef118f7ee2304618f09a9d
parent b0ebf48b29eecc31739f71504590fdf4878d27bf
2 files changed +7 -0
modified simulation/README.md
@@ -20,6 +20,9 @@ To run the simulation environment, you need the following tools installed on you
The environment is managed entirely via `just`. From the `simulation` directory, you can run:

```shell
+
# Run all tests
+
$ just test
+

# Start the complete simulation (creates cluster, configures K8s, and deploys the network)
$ just start

modified simulation/justfile
@@ -13,6 +13,10 @@ HINT := "💡 " + BOLD
default:
    @just --list

+
[group('test')]
+
test: setup
+
    @cargo test -p radicle-simulation
+

# Setup and start the complete simulation environment
[group('start')]
[group('setup')]