Skip to content

Commit 43cc8b5

Browse files
committed
refactor : 로컬(ãdev,test).yml 복구
1 parent d40bc2c commit 43cc8b5

File tree

3 files changed

+31
-9
lines changed

3 files changed

+31
-9
lines changed

src/main/resources/application-dev.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ spring:
1515
host: localhost
1616
port: 6379
1717
timeout: 6000
18-
cache: #Spring Cache를 사용하기 위한 Redis
19-
type: redis
20-
redis:
21-
time-to-live: 300000
22-
cache-null-values: false
2318

19+
security:
20+
oauth2:
21+
client:
22+
registration:
23+
kakao:
24+
redirect-uri: http://localhost:8080/login/oauth2/code/kakao
25+
google:
26+
redirect-uri: http://localhost:8080/login/oauth2/code/google
2427
app:
2528
seed:
2629
enabled: true
2730

2831
sentry:
29-
dsn: https://60f1acad189d2994353d59b7895076ee@o4510100579155968.ingest.us.sentry.io/4510100584923136
30-
# Add data like request headers and IP for users,
31-
# see https://docs.sentry.io/platforms/java/guides/spring-boot/data-management/data-collected/ for more info
3232
send-default-pii: true
3333
environment: local
34-
traces-sample-rate: 0.0
34+
traces-sample-rate: 0.0

src/main/resources/application-server.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ spring:
1414
port: 6379
1515
timeout: 6000
1616
password: ${REDIS_PASSWORD}
17+
1718
cache: #Spring Cache를 사용하기 위한 Redis
1819
type: redis
1920
redis:

src/main/resources/application-test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,27 @@ spring:
1313
ddl-auto: create-drop
1414
show-sql: true
1515

16+
security:
17+
oauth2:
18+
client:
19+
registration:
20+
kakao:
21+
redirect-uri: http://localhost:3000/oauth/callback/kakao
22+
google:
23+
redirect-uri: http://localhost:3000/oauth/callback/google
24+
25+
front:
26+
redirect_domain: http://localhost:3000
27+
28+
app:
29+
seed:
30+
enabled: false
31+
32+
sentry:
33+
send-default-pii: true
34+
environment: local
35+
traces-sample-rate: 0.0
36+
1637
sql:
1738
init:
1839
mode: never

0 commit comments

Comments
 (0)