docs: set-config for redis_socketio during development (#1261)

This commit is contained in:
Revant Nandgaonkar 2023-10-30 11:56:22 +05:30 committed by GitHub
parent 2e99af1a3f
commit 27361b7500
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 db_host mariadb
bench set-config -g redis_cache redis://redis-cache:6379 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_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. 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", "db_host": "mariadb",
"redis_cache": "redis://redis-cache:6379", "redis_cache": "redis://redis-cache:6379",
"redis_queue": "redis://redis-queue:6379" "redis_queue": "redis://redis-queue:6379",
"redis_socketio": "redis://redis-queue:6379"
} }
``` ```