Skip to content

Commit

Permalink
dev 환경 변수 수정 (#188)
Browse files Browse the repository at this point in the history
fix: 환경 변수 수정
  • Loading branch information
shb03323 authored Aug 3, 2023
1 parent dd13655 commit 1e99043
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion backend/baton/secret
13 changes: 9 additions & 4 deletions backend/baton/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,15 @@ logging:

oauth:
github:
client_id: ${GITHUB_CLIENT_ID}
redirect_uri: ${GITHUB_REDIRECT_URI}
client_secret: ${GITHUB_CLIENT_SECRET}
scope: ${GITHUB_SCOPE}
client_id: ${OAUTH_GITHUB_CLIENT_ID}
redirect_uri: ${OAUTH_GITHUB_REDIRECT_URI}
client_secret: ${OAUTH_GITHUB_CLIENT_SECRET}
scope: ${OAUTH_GITHUB_SCOPE}

cors:
allowed-origin: http://localhost:8080

jwt:
token:
secret_key: ${JWT_SECRET_KEY}
issuer: ${JWT_ISSUER}

0 comments on commit 1e99043

Please sign in to comment.