File tree 1 file changed +2
-2
lines changed
packages/ui-admin/src/management/checklist
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ export const Checklist: FC<Props> = props => {
103
103
title = "Use a Postgres database"
104
104
docs = "https://botpress.com/docs/building-chatbots/developers/database#how-to-switch-from-sqlite-to-postgressql"
105
105
status = { getEnv ( 'DATABASE_URL' ) . startsWith ( 'postgres' ) ? 'success' : 'warning' }
106
- source = { [ { type : 'env' , key : 'DATABASE_URL' , value : getEnv ( 'DATABASE_URL' ) } ] }
106
+ source = { [ { type : 'env' , key : 'DATABASE_URL' , value : '**********' } ] }
107
107
>
108
108
By default, Botpress uses an SQLite database, which is not recommended in a production environment. Postgres
109
109
is more resilient and allows to run Botpress in cluster mode (using multiple servers to handle the load).
@@ -155,7 +155,7 @@ export const Checklist: FC<Props> = props => {
155
155
title = "Enable Redis support"
156
156
status = { isSet ( getEnv ( 'REDIS_URL' ) ) && isSet ( getEnv ( 'CLUSTER_ENABLED' ) ) ? 'success' : 'warning' }
157
157
source = { [
158
- { type : 'env' , key : 'REDIS_URL' , value : getEnv ( 'REDIS_URL' ) } ,
158
+ { type : 'env' , key : 'REDIS_URL' , value : '**********' } ,
159
159
{ type : 'env' , key : 'CLUSTER_ENABLED' , value : getEnv ( 'CLUSTER_ENABLED' ) } ,
160
160
{ type : 'env' , key : 'BP_REDIS_SCOPE' , value : getEnv ( 'BP_REDIS_SCOPE' ) }
161
161
] }
You can’t perform that action at this time.
0 commit comments