blob: 4f40aeaa06963f5c796d8fec2cb2428ffaafee90 [file] [log] [blame]
shivasubedi8df61a92021-06-16 14:43:18 +01001# ============LICENSE_START=======================================================
2# Copyright (C) 2021 Pantheon.tech
ToineSiebelink2a18c1d2022-10-24 14:12:32 +01003# Modifications Copyright (C) 2022 Nordix Foundation.
shivasubedi8df61a92021-06-16 14:43:18 +01004# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# SPDX-License-Identifier: Apache-2.0
17# ============LICENSE_END=========================================================
18
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020019spring:
20 jpa:
21 ddl-auto: create
ToineSiebelink2a18c1d2022-10-24 14:12:32 +010022 show-sql: false
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020023 properties:
24 hibernate:
25 enable_lazy_load_no_trans: true
26 dialect: org.hibernate.dialect.PostgreSQLDialect
Renu Kumaric9af4ea2022-01-20 13:30:05 -050027 format_sql: true
ToineSiebelinka096a7f2022-10-20 18:34:29 +010028 show_sql: false
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +000029
Ruslan Kashapov7cca0292020-11-24 11:13:43 +020030 datasource:
31 url: ${DB_URL}
32 username: ${DB_USERNAME}
33 password: ${DB_PASSWORD}
34 driverClassName: org.postgresql.Driver
35 initialization-mode: always
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +000036
37 liquibase:
ToineSiebelink2a18c1d2022-10-24 14:12:32 +010038 change-log: classpath:changelog/changelog-master.yaml