Co-authored-by: Michael Hoennig <michael@hoennig.de> Reviewed-on: #90 Reviewed-by: Timotheus Pokorra <timotheus.pokorra@hostsharing.net>
35 lines
906 B
YAML
35 lines
906 B
YAML
spring:
|
|
sql:
|
|
init:
|
|
platform: postgres
|
|
|
|
datasource:
|
|
url-tc: jdbc:tc:postgresql:15.5-bookworm:///spring_boot_testcontainers
|
|
url-local: jdbc:postgresql://localhost:5432/postgres
|
|
url: ${spring.datasource.url-tc}
|
|
username: postgres
|
|
password: password
|
|
|
|
jpa:
|
|
properties:
|
|
hibernate:
|
|
default_schema: public
|
|
dialect: net.hostsharing.hsadminng.config.PostgresCustomDialect
|
|
format_sql: false
|
|
hibernate:
|
|
ddl-auto: none
|
|
show-sql: false
|
|
|
|
test:
|
|
database:
|
|
replace: none
|
|
|
|
liquibase:
|
|
change-log: classpath:/db/changelog/db.changelog-master.yaml
|
|
contexts: tc,test,dev,pg_stat_statements
|
|
|
|
logging:
|
|
level:
|
|
liquibase: WARN
|
|
net.ttddyy.dsproxy.listener: DEBUG # HOWTO: log meaningful SQL statements
|