Versions Compared

Key

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

...

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

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

...

In the Blueriq-dcm-lists.yml file add the following lines to enable the dcm-lists component to communicate with the tasks database:

spring:

  data:

    mongodb:

      host: localhost

      port: 30012

      database: tasks

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

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

...

Code Block
languageyml
title blueriq-dcm-maintenacne-app.yml
blueriq:
  dcm:
    maintenance:
      app:       
        mongodb:                
		          host: localhost
         <url-of-the-database-server>
      	  port: 30012
         <port-of-the-database>
          database: messages

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

...