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