From 182c9f7080b1b03fd0195ac55fc7438a0add1889 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Tue, 26 Mar 2024 14:02:22 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8D=20chore:=20Clean=20Up=20Documentat?= =?UTF-8?q?ion=20Pt.=204=20(#2220)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/index.md | 2 +- docs/install/configuration/docker_override.md | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/index.md b/docs/index.md index c60443debb..86dd8d6d64 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,7 +6,7 @@ weight: -10

- +

LibreChat

diff --git a/docs/install/configuration/docker_override.md b/docs/install/configuration/docker_override.md index ac29256e8e..e9391c9162 100644 --- a/docs/install/configuration/docker_override.md +++ b/docs/install/configuration/docker_override.md @@ -272,12 +272,10 @@ use LibreChat ``` Now we'll create the actual credentials to be used by our Mongo connection string, which will be limited to read/write access of the "LibreChat" database. As before, replace the example with your desired credentials: -```bash -db.createUser({ user: 'user', pwd: 'userpasswd', roles: [ { role: "readWrite", db: "LibreChat" } ] }); -``` -You should see an "ok" output again: -> { ok: 1 } +`db.createUser({ user: 'user', pwd: 'userpasswd', roles: [ { role: "readWrite", db: "LibreChat" } ] });` + +You should see an "ok" output again. You can verify the user creation with the `show users` command.