Files
aplp.backend.web/src/main/resources/application-dev.yml
T

17 lines
359 B
YAML
Raw Normal View History

2026-08-11 23:11:17 +07:00
spring:
datasource:
url: ${DB_URL:jdbc:postgresql://localhost:5432/aplp}
username: ${DB_USERNAME:postgres}
password: ${DB_PASSWORD:Pa55w0rd}
hikari:
maximum-pool-size: ${DB_POOL_SIZE:10}
jpa:
properties:
hibernate:
format_sql: true
show-sql: ${JPA_SHOW_SQL:false}
logging:
level:
2026-08-16 20:07:50 +07:00
aplp.backend.web: DEBUG