Skip to content

Commit

Permalink
[hotfix] application.yml 환경변수 변경 #19
Browse files Browse the repository at this point in the history
[hotfix] application.yml 환경변수 변경
  • Loading branch information
yangchef1 authored May 10, 2024
2 parents c22f739 + e6203fb commit 685a939
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
spring:
datasource:
url: jdbc:mysql://${{ secrets.DATABASE_HOST }}:${{ secrets.DATABASE_PORT }}/${{ secrets.DATABASE_NAME }}?serverTimezone=Asia/Seoul&characterEncoding=UTF-8
username: ${{ secrets.DATABASE_USERNAME }}
password: ${{ secrets.DATABASE_PASSWORD }}
url: jdbc:mysql://${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_NAME}?serverTimezone=Asia/Seoul&characterEncoding=UTF-8
username: ${DATABASE_USERNAME}
password: ${DATABASE_PASSWORD}
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
hibernate:
Expand All @@ -19,6 +19,6 @@ logging:
org.hibernate.type: trace

jwt:
secret: ${{ secrets.JWT_SECRET }}
secret: ${JWT_SECRET}
access-token:
expire-length: ${{ secrets.ACCESS_TOKEN_EXPIRED_TIME }}
expire-length: ${ACCESS_TOKEN_EXPIRED_TIME}

0 comments on commit 685a939

Please sign in to comment.