Skip to content

Commit bced8d5

Browse files
committed
Merge branch 'develop' into feature/login
2 parents f481886 + a545978 commit bced8d5

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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

0 commit comments

Comments
 (0)