123456789101112131415161718192021 |
- logging:
- level:
- root: INFO
- org.springframework.web: INFO
- org.springframework.security: INFO
- # org.springframework.boot.autoconfigure: DEBUG
- spring:
- thymeleaf:
- cache: false
- security:
- oauth2:
- client:
- registration:
- client-id:
- client-id: replace-with-client-id
- client-secret: replace-with-client-secret
- provider: github
- scopes: read:user,public_repo
- resource-uri: https://api.github.com/user/repos
|