From c7c5b2f0c00086442a3eeb25501e7e53abfbc0d7 Mon Sep 17 00:00:00 2001 From: Mario Rugiero Date: Wed, 2 Oct 2024 14:52:36 -0300 Subject: [PATCH] docs: add `batcher_start_local` to setup guide The option wasn't previously documented, so we relied in oral tradition to know how to develop. --- docs/3_guides/6_setup_aligned.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/3_guides/6_setup_aligned.md b/docs/3_guides/6_setup_aligned.md index ae3f5edde..611a37eea 100644 --- a/docs/3_guides/6_setup_aligned.md +++ b/docs/3_guides/6_setup_aligned.md @@ -315,6 +315,11 @@ To start the [Batcher](../2_architecture/components/1_batcher.md): make batcher_start ``` +If you are testing locally, you can run this instead: +```bash +make batcher_start_local +``` +
More information about Batcher configuration: @@ -362,6 +367,15 @@ ecdsa: make batcher_start ``` +or + +```bash +make batcher_start_local +``` + +The latter version sets up a [localstack](https://www.localstack.cloud/) to act as a replacement for S3, +so you don't need to interact with (and give money to) AWS for your tests. +
---