blob: 7454ad21ef0c58883d911497819f46c98ca97183 [file] [log] [blame]
Ruslan Kashapov7cca0292020-11-24 11:13:43 +02001spring:
2 jpa:
3 ddl-auto: create
4 properties:
5 hibernate:
6 enable_lazy_load_no_trans: true
7 dialect: org.hibernate.dialect.PostgreSQLDialect
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +00008
Ruslan Kashapov7cca0292020-11-24 11:13:43 +02009 datasource:
10 url: ${DB_URL}
11 username: ${DB_USERNAME}
12 password: ${DB_PASSWORD}
13 driverClassName: org.postgresql.Driver
14 initialization-mode: always
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +000015
16 liquibase:
17 change-log: classpath:changelog/changelog-master.yaml