Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 1 | # will be used as entry in DB to say SITE OFF/ON for healthcheck |
| 2 | # MSO Properties go here |
| 3 | |
| 4 | server: |
| 5 | port: 8080 |
| 6 | tomcat: |
| 7 | max-threads: 50 |
| 8 | |
| 9 | mso: |
| 10 | logPath: ./logs/openstack |
| 11 | site-name: localDevEnv |
| 12 | async: |
| 13 | core-pool-size: 50 |
| 14 | max-pool-size: 50 |
| 15 | queue-capacity: 500 |
| 16 | |
| 17 | # CatalogDB |
| 18 | spring: |
| 19 | datasource: |
| 20 | url: jdbc:mariadb://${DB_HOST}:${DB_PORT}/catalogdb |
| 21 | username: ${DB_USERNAME} |
| 22 | password: ${DB_PASSWORD} |
| 23 | driver-class-name: org.mariadb.jdbc.Driver |
| 24 | dbcp2: |
| 25 | initial-size: 5 |
| 26 | max-total: 20 |
| 27 | validation-query: select 1 |
| 28 | test-on-borrow: true |
| 29 | jpa: |
| 30 | show-sql: true |
| 31 | hibernate: |
| 32 | dialect: org.hibernate.dialect.MySQL5Dialect |
| 33 | ddl-auto: validate |
| 34 | naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy |
| 35 | enable-lazy-load-no-trans: true |
| 36 | |
| 37 | |
| 38 | #Actuator |
| 39 | management: |
| 40 | context-path: /manage |
Benjamin, Max (mb388a) | a81aef2 | 2018-08-13 09:48:57 -0400 | [diff] [blame] | 41 | |
| 42 | flyway: |
| 43 | outOfOrder: true |
Rob Daugherty | 5bea41b | 2018-08-21 18:42:55 -0400 | [diff] [blame] | 44 | ignoreMissingMigrations: true |
| 45 | baseline-on-migrate: true |
| 46 | validate-on-migrate: false |