You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore: add 'api' image to tag release workflow
* docs: update DO deployment docs to include instruction about latest stable release, as well as security best practices
* Release v0.5.8
* docs: Update digitalocean.md with firewall section images
* docs: make_your_own.md formatting fix for mkdocs
### Part II: Installing Docker and Other Dependencies:
@@ -287,13 +303,22 @@ cd LibreChat/
287
303
```
288
304
289
305
### **2. Create a global environment file.**
290
-
The default values are enough to get you started and running the app! API credentials can be provided when accessing the web app.
306
+
The default values are enough to get you started and running the app.
291
307
292
308
```bash
293
309
# Copies the example file as your global env file
294
310
cp .env.example .env
295
311
```
296
312
313
+
However, it's highly recommended you use environment variables for any sensitive credentials until we remove use of localStorage for passing credentials from the frontend
314
+
315
+
```bash
316
+
nano .env
317
+
318
+
# then, add your credentials
319
+
OPENAI_API_KEY=sk-yourKey
320
+
```
321
+
297
322
**That's it!**
298
323
299
324
For thorough configuration, however, you should edit your .env file as needed, and do read the comments in the file and the resources below.
@@ -447,8 +472,7 @@ You should be all set!
447
472
448
473
> Note that any changes to the code in this environment won't be reflected because the compose file is pulling the docker images built automatically by GitHub
449
474
450
-
<!-- TODO: since the api images are not part of the tag workflow yet
451
-
## Part VI: Latest Stable Release vs. Latest Release (editing the compose file)
475
+
## Part VI: Use the Latest Stable Release instead of Latest Main Branch
452
476
453
477
By default, this setup will pull the latest updates to the main branch of Librechat. If you would rather have the latest "stable" release, which is defined by the [latest tags](https://github.com/danny-avila/LibreChat/releases), you will need to edit deploy-compose.yml and commit your changes exactly as above in Part V.
0 commit comments