mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 09:20:15 +01:00
🔍 chore: Clean Up Documentation Pt. 4 (#2220)
This commit is contained in:
parent
5df0ec06ea
commit
182c9f7080
2 changed files with 4 additions and 6 deletions
|
|
@ -6,7 +6,7 @@ weight: -10
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://librechat.ai">
|
<a href="https://librechat.ai">
|
||||||
<img src="assets/LibreChat.svg" style="margin-left: 40px; height: 256px; width: 256px;">
|
<img src="assets/LibreChat.svg" style="margin-left: 40px; height: 256px; width: 256px;"/>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://librechat.ai">
|
<a href="https://librechat.ai">
|
||||||
<h1 align="center" style="padding: 0;">LibreChat</h1>
|
<h1 align="center" style="padding: 0;">LibreChat</h1>
|
||||||
|
|
|
||||||
|
|
@ -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:
|
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:
|
`db.createUser({ user: 'user', pwd: 'userpasswd', roles: [ { role: "readWrite", db: "LibreChat" } ] });`
|
||||||
> { ok: 1 }
|
|
||||||
|
You should see an "ok" output again.
|
||||||
|
|
||||||
You can verify the user creation with the `show users` command.
|
You can verify the user creation with the `show users` command.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue