Skip to content

Commit

Permalink
feat : (#15) Update application.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
kangeunchan committed Jan 8, 2025
1 parent 8be9418 commit 88cf9f3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/resources/application.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
spring:
datasource:
url: jdbc:mysql://${DB_HOST}/${DB_NAME}
url: jdbc:mysql://${DB_HOST}:${DB_PORT}/${DB_NAME}
username: ${DB_USERNAME}
password: ${DB_PASSWORD}
driver-class-name: com.mysql.cj.jdbc.Driver

jpa:
hibernate:
ddl-auto: ${JPA_HIBERNATE_DDL_AUTO}
show-sql: ${JPA_SHOW_SQL}
properties:
a:
hibernate:
format_sql: ${JPA_FORMAT_SQL}
dialect: org.hibernate.dialect.MySQLDialect
open-in-view: false


security:
oauth2:
client:
Expand All @@ -39,7 +39,7 @@ spring:

jwt:
header: ${HEADER}
prefix : ${PREFIX}
prefix: ${PREFIX}
secret-key: ${JWT_SECRET}
access-exp: ${ACCESS_EXP}
refresh-exp: ${REFRESH_EXP}
refresh-exp: ${REFRESH_EXP}

0 comments on commit 88cf9f3

Please sign in to comment.