From 27361b750022eb1f0721089415f8082b48ea8866 Mon Sep 17 00:00:00 2001 From: Revant Nandgaonkar Date: Mon, 30 Oct 2023 11:56:22 +0530 Subject: [PATCH] docs: set-config for redis_socketio during development (#1261) --- docs/development.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/development.md b/docs/development.md index e2c05ace..d70a576f 100644 --- a/docs/development.md +++ b/docs/development.md @@ -103,6 +103,7 @@ We need to tell bench to use the right containers instead of localhost. Run the bench set-config -g db_host mariadb bench set-config -g redis_cache redis://redis-cache:6379 bench set-config -g redis_queue redis://redis-queue:6379 +bench set-config -g redis_socketio redis://redis-queue:6379 ``` For any reason the above commands fail, set the values in `common_site_config.json` manually. @@ -111,7 +112,8 @@ For any reason the above commands fail, set the values in `common_site_config.js { "db_host": "mariadb", "redis_cache": "redis://redis-cache:6379", - "redis_queue": "redis://redis-queue:6379" + "redis_queue": "redis://redis-queue:6379", + "redis_socketio": "redis://redis-queue:6379" } ```