34 lines
653 B
YAML
34 lines
653 B
YAML
spring:
|
|
application:
|
|
name: legalconsenthub-test
|
|
|
|
autoconfigure:
|
|
exclude:
|
|
- org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration
|
|
|
|
datasource:
|
|
url: jdbc:h2:mem:testdb
|
|
username: sa
|
|
password:
|
|
driver-class-name: org.h2.Driver
|
|
|
|
jpa:
|
|
database-platform: org.hibernate.dialect.H2Dialect
|
|
hibernate:
|
|
ddl-auto: create-drop
|
|
show-sql: false
|
|
|
|
liquibase:
|
|
enabled: false
|
|
|
|
sql:
|
|
init:
|
|
platform: h2
|
|
|
|
logging:
|
|
level:
|
|
com.betriebsratkanzlei.legalconsenthub: DEBUG
|
|
org.springframework.security: WARN
|
|
org.springframework.web: WARN
|
|
|