Skip to content

Commit

Permalink
chore: change db env
Browse files Browse the repository at this point in the history
  • Loading branch information
essential2189 committed Jan 23, 2024
1 parent af6b93d commit 1421749
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ spring:

datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://${{ secrets.MYSQL_URL_DEV }}:3306/today_popup?useSSL=false&allowPublicKeyRetrieval=true&characterEncoding=UTF-8&useLegacyDatetimeCode=false&serverTimezone=KST
username: ${{ secrets.MYSQL_USERNAME_DEV }}
password: ${{ secrets.MYSQL_PASSWORD_DEV }}
url: jdbc:mysql://${{ MYSQL_URL_DEV }}:3306/today_popup?useSSL=false&allowPublicKeyRetrieval=true&characterEncoding=UTF-8&useLegacyDatetimeCode=false&serverTimezone=KST
username: ${{ MYSQL_USERNAME_DEV }}
password: ${{ MYSQL_PASSWORD_DEV }}

jpa:
open-in-view: true
Expand Down

0 comments on commit 1421749

Please sign in to comment.