Files
code-journey/backend/src/main/resources/application.yaml
T
2026-05-09 01:20:37 +07:00

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