Update app description in environment configs
Browse filesSet PUBLIC_APP_DESCRIPTION in both .env and prod.yaml to 'Making the community's best AI chat models available to everyone.' to provide a consistent description across environments.
- .env +1 -1
- chart/env/prod.yaml +1 -0
.env
CHANGED
|
@@ -23,7 +23,7 @@ MONGODB_DIRECT_CONNECTION=false
|
|
| 23 |
PUBLIC_APP_GUEST_MESSAGE=# a message to the guest user. If not set, no message will be shown. Only used if you have authentication enabled.
|
| 24 |
PUBLIC_APP_NAME=ChatUI # name used as title throughout the app
|
| 25 |
PUBLIC_APP_ASSETS=chatui # used to find logos & favicons in static/$PUBLIC_APP_ASSETS
|
| 26 |
-
PUBLIC_APP_DESCRIPTION=# description used throughout the app
|
| 27 |
PUBLIC_SMOOTH_UPDATES=false # set to true to enable smoothing of messages client-side, can be CPU intensive
|
| 28 |
PUBLIC_ORIGIN=
|
| 29 |
PUBLIC_SHARE_PREFIX=
|
|
|
|
| 23 |
PUBLIC_APP_GUEST_MESSAGE=# a message to the guest user. If not set, no message will be shown. Only used if you have authentication enabled.
|
| 24 |
PUBLIC_APP_NAME=ChatUI # name used as title throughout the app
|
| 25 |
PUBLIC_APP_ASSETS=chatui # used to find logos & favicons in static/$PUBLIC_APP_ASSETS
|
| 26 |
+
PUBLIC_APP_DESCRIPTION="Making the community's best AI chat models available to everyone."# description used throughout the app
|
| 27 |
PUBLIC_SMOOTH_UPDATES=false # set to true to enable smoothing of messages client-side, can be CPU intensive
|
| 28 |
PUBLIC_ORIGIN=
|
| 29 |
PUBLIC_SHARE_PREFIX=
|
chart/env/prod.yaml
CHANGED
|
@@ -65,6 +65,7 @@ envVars:
|
|
| 65 |
MESSAGES_BEFORE_LOGIN: "999"
|
| 66 |
PUBLIC_APP_ASSETS: "huggingchat"
|
| 67 |
PUBLIC_APP_NAME: "HuggingChat"
|
|
|
|
| 68 |
PUBLIC_ORIGIN: "https://huggingface.co"
|
| 69 |
PUBLIC_PLAUSIBLE_SCRIPT_URL: "/js/script.js"
|
| 70 |
|
|
|
|
| 65 |
MESSAGES_BEFORE_LOGIN: "999"
|
| 66 |
PUBLIC_APP_ASSETS: "huggingchat"
|
| 67 |
PUBLIC_APP_NAME: "HuggingChat"
|
| 68 |
+
PUBLIC_APP_DESCRIPTION: "Making the community's best AI chat models available to everyone"
|
| 69 |
PUBLIC_ORIGIN: "https://huggingface.co"
|
| 70 |
PUBLIC_PLAUSIBLE_SCRIPT_URL: "/js/script.js"
|
| 71 |
|