2022-07-28 16:56:34 +02:00
|
|
|
spring:
|
|
|
|
sql:
|
|
|
|
init:
|
|
|
|
platform: postgres
|
|
|
|
|
|
|
|
datasource:
|
2024-01-02 15:27:15 +01:00
|
|
|
url: jdbc:tc:postgresql:15.5-bookworm:///spring_boot_testcontainers
|
2022-07-31 18:56:03 +02:00
|
|
|
url-local: jdbc:postgresql://localhost:5432/postgres
|
2022-07-28 16:56:34 +02:00
|
|
|
username: postgres
|
|
|
|
password: password
|
|
|
|
|
|
|
|
jpa:
|
|
|
|
properties:
|
|
|
|
hibernate:
|
|
|
|
default_schema: public
|
2022-08-30 13:08:29 +02:00
|
|
|
dialect: net.hostsharing.hsadminng.config.PostgresCustomDialect
|
2022-08-12 17:56:39 +02:00
|
|
|
format_sql: false
|
2022-07-28 16:56:34 +02:00
|
|
|
hibernate:
|
|
|
|
ddl-auto: none
|
2022-10-14 08:33:59 +02:00
|
|
|
show-sql: false
|
2022-07-28 16:56:34 +02:00
|
|
|
|
|
|
|
test:
|
|
|
|
database:
|
|
|
|
replace: none
|
|
|
|
|
|
|
|
liquibase:
|
|
|
|
change-log: classpath:/db/changelog/db.changelog-master.yaml
|
2022-07-31 18:56:03 +02:00
|
|
|
contexts: tc,test,dev
|
2022-07-28 16:56:34 +02:00
|
|
|
|
|
|
|
logging:
|
|
|
|
level:
|
|
|
|
liquibase: INFO
|
2022-10-14 08:33:59 +02:00
|
|
|
net.ttddyy.dsproxy.listener: DEBUG
|