blob: 670d16b6c714d47e5a41a0d770e9686e847b7197 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# will be used as entry in DB to say SITE OFF/ON for healthcheck
server:
port: 8080
tomcat:
max-threads: 50
ssl-enable: false
mso:
adapters:
requestDb:
auth: Basic YnBlbDptc28tZGItMTUwNyE=
endpoint: http://localhost:8081
site-name: localDevEnv
logPath: logs
# H2
spring:
datasource:
jdbc-url: jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;
username: sa
password: sa
driver-class-name: org.h2.Driver
h2:
console:
enabled: true
path: /h2
jpa:
show-sql: true
hibernate:
dialect: org.hibernate.dialect.MySQL5Dialect
ddl-auto: none
naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
enable-lazy-load-no-trans: true
#Actuator
management:
security:
enabled: false
basic:
enabled: false
|