Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In the application-case-engine.properties file, add the following lines which enable the case engine to communicate with the caseEngine and locks databases:

Code Block
languagebash
titleapplication-case-engine.properties
#mongoDB - case engine
blueriq.case.engine.data.mongodb.host=<url-of-the-database-server>
blueriq.case.engine.data.mongodb.port=<port-of-the-mongoDB-instance>
blueriq.case.engine.data.mongodb.database=caseEngine

#mongoDB - locks
blueriq.locking.mongodb.host=<url-of-the-database-server>
blueriq.locking.mongodb.port=<port-of-the-mongoDB-instance>
blueriq.locking.mongodb.database=locks

...

Code Block
languageyml
titleblueriq-dcm-lists.yml
spring:
  data:
    mongodb:
      		host: <url-of-the-database-server>
      		port: <port-of-the-mongoDB-instance>
      		database: tasks

Replace the strings with < and > with the needed values of your specific setup.

...