diff options
Diffstat (limited to 'src/main/resources/application.yml')
-rwxr-xr-x | src/main/resources/application.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index ff70e46..d4c799c 100755 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -15,6 +15,9 @@ # limitations under the License. # ============LICENSE_END========================================================= +server: + port: 8080 + spring: datasource: url: jdbc:postgresql://${DB_HOST}:${DB_PORT}/cpstemporaldb @@ -22,3 +25,12 @@ spring: password: ${DB_PASSWORD} liquibase: change-log: classpath:/db/changelog/changelog-master.xml + jpa: + properties: + hibernate: + dialect: org.hibernate.dialect.PostgreSQLDialect + +logging: + level: + org: + springframework: INFO |