Skip to content

Commit

Permalink
fix: 테스트 실패 문제 대응
Browse files Browse the repository at this point in the history
  • Loading branch information
seungyeop-lee committed May 20, 2024
1 parent 534a76f commit ab42ace
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions api/src/test/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
spring:
datasource:
driver-class-name: org.h2.Driver
security:
oauth2:
client:
registration:
google:
client-name: google
client-id: 888756350502-376ig1il0g9mdb8vbs1nj8u291lh4hl3.apps.googleusercontent.com
client-secret: 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
redirect-uri: http://localhost:8080/login/oauth2/code/google
authorization-grant-type: authorization_code
scope:
- profile
- email
service:
meilisearch:
host: http://localhost:7700
apiKey: aSampleMasterKey
jwt:
secret: vmfhaltmskdlstkfkdgodyroqkfwkdba
oauth2:
tokenNoticeUrl: http://localhost:3000/auth/token
loginFailUrl: http://localhost:3000/auth?error
accessTokenExpiredMinute: 30 # 30 minutes
refreshTokenExpiredMinute: 10080 # 60 * 24 * 7 == 1 week

0 comments on commit ab42ace

Please sign in to comment.