File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ logging :
2+ level :
3+ org :
4+ springframework : debug
5+
6+ spring :
7+ datasource :
8+ url : ${aws-mysql.url}
9+ username : ${aws-mysql.username}
10+ password : ${aws-mysql.password}
11+ driver-class-name : com.mysql.cj.jdbc.Driver
12+
13+ jpa :
14+ database-platform : org.hibernate.dialect.MySQLDialect
15+ hibernate :
16+ ddl-auto : create
17+
18+ security :
19+ oauth2 :
20+ client :
21+ registration :
22+ naver :
23+ client-name : naver
24+ client-id : ${naver.client-id}
25+ client-secret : ${naver.client-secret}
26+ redirect-uri : ${naver.redirect-uri}
27+ authorization-grant-type : authorization_code
28+ scope :
29+ - name
30+ - email
31+ - nickname
32+
33+ google :
34+ client-name : google
35+ client-id : ${google.client-id}
36+ client-secret : ${google.client-secret}
37+ redirect-uri : ${google.redirect-uri}
38+ authorization-grant-type : authorization_code
39+ scope :
40+ - profile
41+ - email
42+
43+ provider :
44+ naver :
45+ authorization-uri : https://nid.naver.com/oauth2.0/authorize
46+ token-uri : https://nid.naver.com/oauth2.0/token
47+ user-info-uri : https://openapi.naver.com/v1/nid/me
48+ user-name-attribute : response
You can’t perform that action at this time.
0 commit comments