shivasubedi | 8df61a9 | 2021-06-16 14:43:18 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
| 2 | # Copyright (C) 2021 Pantheon.tech |
ToineSiebelink | 2a18c1d | 2022-10-24 14:12:32 +0100 | [diff] [blame] | 3 | # Modifications Copyright (C) 2022 Nordix Foundation. |
shivasubedi | 8df61a9 | 2021-06-16 14:43:18 +0100 | [diff] [blame] | 4 | # ================================================================================ |
| 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 Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 19 | spring: |
| 20 | jpa: |
| 21 | ddl-auto: create |
ToineSiebelink | 2a18c1d | 2022-10-24 14:12:32 +0100 | [diff] [blame] | 22 | show-sql: false |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 23 | properties: |
| 24 | hibernate: |
| 25 | enable_lazy_load_no_trans: true |
| 26 | dialect: org.hibernate.dialect.PostgreSQLDialect |
Renu Kumari | c9af4ea | 2022-01-20 13:30:05 -0500 | [diff] [blame] | 27 | format_sql: true |
ToineSiebelink | a096a7f | 2022-10-20 18:34:29 +0100 | [diff] [blame] | 28 | show_sql: false |
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame] | 29 | |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 30 | datasource: |
| 31 | url: ${DB_URL} |
| 32 | username: ${DB_USERNAME} |
| 33 | password: ${DB_PASSWORD} |
| 34 | driverClassName: org.postgresql.Driver |
| 35 | initialization-mode: always |
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame] | 36 | |
| 37 | liquibase: |
ToineSiebelink | 2a18c1d | 2022-10-24 14:12:32 +0100 | [diff] [blame] | 38 | change-log: classpath:changelog/changelog-master.yaml |