Skip to content

Commit

Permalink
[#183] feat: dev, prod yml에 토큰 관련 환경변수 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hyerinhwang-sailin committed Aug 22, 2024
1 parent 2efa6fe commit 9bbddbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ spring:

jwt:
secret: ${DEV_JWT_SECRET}
access-token-expire-time: 31536000000 # 365일 (1년) 밀리초
refresh-token-expire-time: 1209600000 # 14일 밀리초
access-token-expire-time: ${DEV_ACCESS_TOKEN_EXPIRE_TIME}
refresh-token-expire-time: ${DEV_REFRESH_TOKEN_EXPIRE_TIME}

cloud:
aws:
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ spring:

jwt:
secret: ${PROD_JWT_SECRET}
access-token-expire-time: 31536000000 # 365일 (1년) 밀리초
refresh-token-expire-time: 1209600000 # 14일 밀리초
access-token-expire-time: ${PROD_ACCESS_TOKEN_EXPIRE_TIME}
refresh-token-expire-time: ${PROD_REFRESH_TOKEN_EXPIRE_TIME}

cloud:
aws:
Expand Down

0 comments on commit 9bbddbb

Please sign in to comment.