30 lines
514 B
YAML
30 lines
514 B
YAML
server:
|
|
port: 8888
|
|
|
|
spring:
|
|
application:
|
|
name: code-journey
|
|
|
|
datasource:
|
|
url: ${DB_URL}
|
|
username: ${DB_USER}
|
|
password: ${DB_PASS}
|
|
driver-class-name: org.postgresql.Driver
|
|
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: update
|
|
show-sql: true
|
|
properties:
|
|
hibernate:
|
|
format_sql: true
|
|
dialect: org.hibernate.dialect.PostgreSQLDialect
|
|
|
|
jackson:
|
|
time-zone: Asia/Ho_Chi_Minh
|
|
|
|
logging:
|
|
level:
|
|
org.hibernate.SQL: debug
|
|
org.hibernate.type.descriptor.sql: trace
|