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 21 days ago
commit c5b981bc4488ee9042148213b26dd7f749fd83b5
parent 4160e68deee03d9322014aacb48097e283f5faa5
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
@@ -15,6 +15,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')]