Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 1 | server: |
| 2 | port: 8080 |
| 3 | tomcat: |
| 4 | max-threads: 50 |
Benjamin, Max (mb388a) | 4e63348 | 2019-02-01 18:13:35 -0500 | [diff] [blame] | 5 | mso: |
| 6 | infra: |
| 7 | auditInventory: true |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 8 | spring: |
| 9 | datasource: |
| 10 | driver-class-name: org.mariadb.jdbc.Driver |
Kalkere Ramesh, Sharan (sk720x) | 115018c | 2019-02-25 18:51:48 -0500 | [diff] [blame^] | 11 | jdbcUrl: jdbc:mariadb://${DB_HOST}:${DB_PORT}/camundabpmn |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 12 | username: ${DB_USERNAME} |
| 13 | password: ${DB_PASSWORD} |
Kalkere Ramesh, Sharan (sk720x) | 115018c | 2019-02-25 18:51:48 -0500 | [diff] [blame^] | 14 | flyway: |
| 15 | baselineOnMigrate: true |
| 16 | outOfOrder: true |
| 17 | table: FLYWAY_SCHEMA_HISTORY |
| 18 | url: jdbc:mariadb://${DB_HOST}:${DB_PORT}/camundabpmn |
| 19 | user: ${DB_ADMIN_USERNAME} |
| 20 | password: ${DB_ADMIN_PASSWORD} |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 21 | http: |
| 22 | multipart: |
| 23 | enabled: false |
| 24 | jersey: |
| 25 | application-path: /sobpmnengine |
Benjamin, Max (mb388a) | 7ace3e6 | 2018-11-17 00:52:11 -0500 | [diff] [blame] | 26 | camunda: |
| 27 | bpm: |
| 28 | application: |
| 29 | delete-upon-undeploy: false |
| 30 | scan-for-process-definitions: true |
| 31 | deploy-changed-only: true |
| 32 | job-execution: |
| 33 | deployment-aware: true |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 34 | #Actuator |
Benjamin, Max (mb388a) | 3cccd48 | 2019-01-11 21:02:26 -0500 | [diff] [blame] | 35 | management: |
| 36 | endpoints: |
| 37 | web: |
| 38 | base-path: /manage |
| 39 | exposure: |
| 40 | include: "*" |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 41 | metrics: |
| 42 | se-global-registry: false |
| 43 | export: |
| 44 | prometheus: |
| 45 | enabled: true # Whether exporting of metrics to Prometheus is enabled. |
| 46 | step: 1m # Step size (i.e. reporting frequency) to use. |