blob: 73292bbfaf85b9a4d22df972fd3741ea5f8cbff9 [file] [log] [blame]
shivasubedi8df61a92021-06-16 14:43:18 +01001# ============LICENSE_START=======================================================
2# Copyright (C) 2021 Pantheon.tech
3# ================================================================================
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15# SPDX-License-Identifier: Apache-2.0
16# ============LICENSE_END=========================================================
17
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020018spring:
19 jpa:
20 ddl-auto: create
21 properties:
22 hibernate:
23 enable_lazy_load_no_trans: true
24 dialect: org.hibernate.dialect.PostgreSQLDialect
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +000025
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020026 datasource:
27 url: ${DB_URL}
28 username: ${DB_USERNAME}
29 password: ${DB_PASSWORD}
30 driverClassName: org.postgresql.Driver
31 initialization-mode: always
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +000032
33 liquibase:
34 change-log: classpath:changelog/changelog-master.yaml