diff --git a/docs/docs/config/database.md b/docs/docs/config/database.md index 815b27630..865f45571 100644 --- a/docs/docs/config/database.md +++ b/docs/docs/config/database.md @@ -4,7 +4,7 @@ permalink: /docs/config-database/ # Database -By default _NotifyBC_ uses in-memory database backed up by folder _/server/database/_ for local and docker deployment and MongoDB for Kubernetes deployment. To use MongoDB for non-Kubernetes deployment, add file _/src/datasources/db.datasource.(local|\).(json|js|ts)_ with MongoDB connection information such as following: +By default _NotifyBC_ uses [mongodb-memory-server](https://github.com/typegoose/mongodb-memory-server) backed up by folder _server/database/_ for local and docker deployment and a separate MongoDB for Kubernetes deployment. To use a separate MongoDB for non-Kubernetes deployment, add file _src/datasources/db.datasource.(local|\).(json|js|ts)_ with MongoDB connection information such as following: ```js module.exports = { diff --git a/docs/docs/config/overview.md b/docs/docs/config/overview.md index d089ecbb6..8e0d312a2 100644 --- a/docs/docs/config/overview.md +++ b/docs/docs/config/overview.md @@ -41,7 +41,7 @@ Customizing other configs only if needed. ## Dynamic Configurations -Dynamic configs are managed using REST [configuration api](../api-config/). +Dynamic configs are managed using REST [configuration api](../api-config/). At the time of installing _NotifyBC_, no dynamic configs need to be setup. ::: tip Why Dynamic Configs? Dynamic configs are needed in cases such as diff --git a/docs/docs/config/queue.md b/docs/docs/config/queue.md index 619cd1a7f..0b7454d3a 100644 --- a/docs/docs/config/queue.md +++ b/docs/docs/config/queue.md @@ -34,4 +34,5 @@ module.exports = { }; ``` -If you deployed _NotifyBC_ using Helm chart, this config is taken care of. +If you deployed _NotifyBC_ using Helm chart, this config is taken care of. If you deployed _NotifyBC_ using docker, Redis is created inside docker using [Redis In-Memory Server +](https://github.com/mhassan1/redis-memory-server) by default.