Skip to content

Commit

Permalink
[BE] 개발(테스트) 서버와 프로덕션 서버 oauth secret분리 (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
koust6u authored Sep 26, 2024
1 parent 2961c88 commit d9aa24c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/src/main/resources/application-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ server:

oauth:
github:
client-id: ${CLIENT_ID}
client-secret: ${CLIENT_SECRET}
redirect-uri: ${CLIENT_REDIRECT_URI}
client-id: ${TEST_CLIENT_ID}
client-secret: ${TEST_CLIENT_SECRET}
redirect-uri: ${TEST_CLIENT_REDIRECT_URI}

jwt:
sign-key: ${JWT_KEY}

0 comments on commit d9aa24c

Please sign in to comment.