mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
🔥🚀 feat: CDN (Firebase) & feat: account section (#1438)
* localization + api-endpoint * docs: added firebase documentation * chore: icons * chore: SettingsTabs * feat: account pannel; fix: gear icons * docs: position update * feat: firebase * feat: plugin support * route * fixed bugs with firebase and moved a lot of files * chore(DALLE3): using UUID v4 * feat: support for social strategies; moved '/images' path * fix: data ignored * gitignore update * docs: update firebase guide * refactor: Firebase - use singleton pattern for firebase initialization, initially on server start - reorganize imports, move firebase specific files to own service under Files - rename modules to remove 'avatar' redundancy - fix imports based on changes * ci(DALLE/DALLE3): fix tests to use logger and new expected outputs, add firebase tests * refactor(loadToolWithAuth): pass userId to tool as field * feat(images/parse): feat: Add URL Image Basename Extraction Implement a new module to extract the basename of an image from a given URL. This addition includes the function, which parses the URL and retrieves the basename using the Node.js 'url' and 'path' modules. The function is documented with JSDoc comments for better maintainability and understanding. This feature enhances the application's ability to handle and process image URLs efficiently. * refactor(addImages): function to use a more specific regular expression for observedImagePath based on the generated image markdown standard across the app * refactor(DALLE/DALLE3): utilize `getImageBasename` and `this.userId`; fix: pass correct image path to firebase url helper * fix(addImages): make more general to match any image markdown descriptor * fix(parse/getImageBasename): test result of this function for an actual image basename * ci(DALLE3): mock getImageBasename * refactor(AuthContext): use Recoil atom state for user * feat: useUploadAvatarMutation, react-query hook for avatar upload * fix(Toast): stack z-order of Toast over all components (1000) * refactor(showToast): add optional status field to avoid importing NotificationSeverity on each use of the function * refactor(routes/avatar): remove unnecessary get route, get userId from req.user.id, require auth on POST request * chore(uploadAvatar): TODO: remove direct use of Model, `User` * fix(client): fix Spinner imports * refactor(Avatar): use react-query hook, Toast, remove unnecessary states, add optimistic UI to upload * fix(avatar/localStrategy): correctly save local profile picture and cache bust for immediate rendering; fix: firebase init info message (only show once) * fix: use `includes` instead of `endsWith` for checking manual query of avatar image path in case more queries are appended (as is done in avatar/localStrategy) --------- Co-authored-by: Danny Avila <messagedaniel@protonmail.com>
This commit is contained in:
parent
bd4d23d314
commit
f19f5dca8e
59 changed files with 1855 additions and 172 deletions
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: 😈 Bing Jailbreak
|
||||
description: Quick overview of the Bing jailbreak and Sydney's system message
|
||||
weight: -3
|
||||
weight: -2
|
||||
---
|
||||
|
||||
# Bing Jailbreak
|
||||
|
|
|
|||
74
docs/features/firebase.md
Normal file
74
docs/features/firebase.md
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
---
|
||||
title: 🔥 Firebase CDN Setup
|
||||
description: This document provides instructions for setting up Firebase CDN for LibreChat
|
||||
weight: -6
|
||||
---
|
||||
|
||||
# Firebase CDN Setup
|
||||
|
||||
## Steps to Set Up Firebase
|
||||
|
||||
1. Open the [Firebase website](https://firebase.google.com/).
|
||||
2. Click on "Get started."
|
||||
3. Sign in with your Google account.
|
||||
|
||||
### Create a New Project
|
||||
|
||||
- Name your project (you can use the same project as Google OAuth).
|
||||
|
||||

|
||||
|
||||
- Optionally, you can disable Google Analytics.
|
||||
|
||||

|
||||
|
||||
- Wait for 20/30 seconds for the project to be ready, then click on "Continue."
|
||||
|
||||

|
||||
|
||||
- Click on "All Products."
|
||||
|
||||

|
||||
|
||||
- Select "Storage."
|
||||
|
||||

|
||||
|
||||
- Click on "Get Started."
|
||||
|
||||

|
||||
|
||||
- Click on "Next."
|
||||
|
||||

|
||||
|
||||
- Select your "Cloud Storage location."
|
||||
|
||||

|
||||
|
||||
- Return to the Project Overview.
|
||||
|
||||

|
||||
|
||||
- Click on "+ Add app" under your project name, then click on "Web."
|
||||
|
||||

|
||||
|
||||
- Register the app.
|
||||
|
||||

|
||||
|
||||
- Save all this information in a text file.
|
||||
|
||||

|
||||
|
||||
- Fill all the `firebaseConfig` variables in the `.env` file.
|
||||
|
||||
```bash
|
||||
FIREBASE_API_KEY=api_key #apiKey
|
||||
FIREBASE_AUTH_DOMAIN=auth_domain #authDomain
|
||||
FIREBASE_PROJECT_ID=project_id #projectId
|
||||
FIREBASE_STORAGE_BUCKET=storage_bucket #storageBucket
|
||||
FIREBASE_MESSAGING_SENDER_ID=messaging_sender_id #messagingSenderId
|
||||
FIREBASE_APP_ID=1:your_app_id #appId
|
||||
```
|
||||
|
|
@ -22,6 +22,7 @@ weight: 2
|
|||
|
||||
* 🔨 [Automated Moderation](./mod_system.md)
|
||||
* 🪙 [Token Usage](./token_usage.md)
|
||||
* 🔥 [Firebase CDN](./firebase.md)
|
||||
* 🍃 [Manage Your Database](./manage_your_database.md)
|
||||
* 🪵 [Logging System](./logging_system.md)
|
||||
* 📦 [PandoraNext](./pandoranext.md)
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: 🪵 Logging System
|
||||
weight: -4
|
||||
description: This doc explains how to use the logging feature of LibreChat, which saves error and debug logs in the `/api/logs` folder. You can use these logs to troubleshoot issues, monitor your server, and report bugs. You can also disable debug logs if you want to save space.
|
||||
weight: -5
|
||||
---
|
||||
|
||||
### General
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: 🍃 Manage Your Database
|
||||
description: How to install and configure Mongo Express to securely access and manage your MongoDB database in Docker.
|
||||
weight: -6
|
||||
weight: -5
|
||||
---
|
||||
|
||||
<img src="https://github.com/danny-avila/LibreChat/assets/32828263/4572dd35-8489-4cb1-a968-4fb5a871d6e5" height="50">
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: 📦 PandoraNext
|
||||
description: How to deploy PandoraNext to enable the `CHATGPT_REVERSE_PROXY` for use with LibreChat.
|
||||
weight: -4
|
||||
weight: -3
|
||||
---
|
||||
|
||||
# PandoraNext Deployment Guide
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue