Update application.yml

update store yml
This commit is contained in:
박서은 2025-06-11 15:15:20 +09:00
parent 3805de5282
commit b854885d2e

View File

@ -1,7 +1,5 @@
server:
port: ${SERVER_PORT:8082}
servlet:
context-path: /
spring:
application:
@ -10,10 +8,11 @@ spring:
url: jdbc:postgresql://${POSTGRES_HOST:localhost}:${POSTGRES_PORT:5432}/${POSTGRES_DB:StoreDB}
username: ${POSTGRES_USER:postgres}
password: ${POSTGRES_PASSWORD:postgres}
driver-class-name: org.postgresql.Driver
jpa:
hibernate:
ddl-auto: ${JPA_DDL_AUTO:update}
show-sql: ${JPA_SHOW_SQL:true}
ddl-auto: ${DDL_AUTO:update}
show-sql: ${SHOW_SQL:true}
properties:
hibernate:
dialect: org.hibernate.dialect.PostgreSQLDialect
@ -24,13 +23,6 @@ spring:
port: ${REDIS_PORT:6379}
password: ${REDIS_PASSWORD:}
springdoc:
swagger-ui:
path: /swagger-ui.html
operations-sorter: method
api-docs:
path: /api-docs
logging:
level:
com.won.smarketing.store: ${LOG_LEVEL:DEBUG}