Skip to content

Commit

Permalink
style: 서버 다운으로 인한 application.yml 파일 수정
Browse files Browse the repository at this point in the history
- DB_PORT, DB_HOST, DB_NAME 분리
  • Loading branch information
KooSuYeon committed Apr 28, 2024
1 parent a4dce1d commit 8e325bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spring:

datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: ${DB_URL}
url: jdbc:mysql://${DB_HOST}:${DB_PORT}/${DB_NAME}?
username: ${DB_USER}
password: ${DB_PASSWORD}

Expand Down

0 comments on commit 8e325bb

Please sign in to comment.