# ===== PostgreSQL 프로필 ===== # 사용법: --spring.profiles.active=prod,postgresql spring: datasource: url: jdbc:postgresql://${DB_HOST:localhost}:${DB_PORT:5432}/${DB_NAME:wbx_spring} username: ${DB_USER:wbxapp} password: ${DB_PASS:password} driver-class-name: org.postgresql.Driver hikari: maximum-pool-size: ${DB_POOL_SIZE:20} minimum-idle: 5 connection-timeout: 30000 jpa: database-platform: org.hibernate.dialect.PostgreSQLDialect properties: hibernate: dialect: org.hibernate.dialect.PostgreSQLDialect flyway: locations: classpath:db/migration/common,classpath:db/migration/postgresql