From aa6c963b0d78304220afba95bf86d9d7524d34fe Mon Sep 17 00:00:00 2001 From: elramen Date: Fri, 6 Feb 2026 17:39:13 +0100 Subject: [PATCH] docs(readme): Update instructions for starting relay dependencies Update the existing devservices cmd used for starting kafka and redis, which fails because: 1) devservices up only accepts a single service argument and 2) kafka and redis can't be started explicitly (e.g. devservices up kafka) with the setup obtained by following the previous instructions of this readme. The new cmd starts redis, kafka, and objectstore correctly as verified by successfully running the integration tests. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 76daf392639..5fb9cf8067d 100644 --- a/README.md +++ b/README.md @@ -143,8 +143,8 @@ create a virtualenv, build the Relay binary with processing enabled, and run a set of integration tests: ```bash -# Make sure that kafka and redis are running -devservices up kafka redis +# Make sure that all dependencies are running +devservices up relay # Create a new virtualenv, build Relay and run integration tests make test-integration