Skip to content

Commit

Permalink
refactor : 설정 yml 리팩토링 (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
choidongkuen committed Jan 17, 2024
1 parent f2c1b88 commit 0581102
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/application-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spring:

naver:
client-id: ${NAVER_CLIENT_ID}
client-secret: ${NAVER_CLIENT_ID}
client-secret: ${NAVER_CLIENT_SECRET}
redirect-uri: ${NAVER_REDIRECT_URI}
authorization-grant-type: authorization_code
scope:
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application-datasource.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ spring:

datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url:
url: ${DATABASE_URL}
username: ${DATABASE_USERNAME}
password: ${DATABASE_PASSWORD}
hikari:
connection-timeout: 3000
maximum-pool-size: 80

flyway:
url:
url: ${DATABASE_URL}
user: ${DATABASE_USERNAME}
password: ${DATABASE_PASSWORD}
baseline-on-migrate: true

0 comments on commit 0581102

Please sign in to comment.