Skip to content

Commit a1371bb

Browse files
committed
feat/OPS-377 : 테스트/운영 환경 분리 #3
1 parent d94d705 commit a1371bb

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

src/main/resources/application-prod.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,6 @@ sentry:
2727
send-default-pii: true
2828
environment: prod-server
2929
traces-sample-rate: 0.2
30+
31+
liveblocks:
32+
secret-key: test_dummy_liveblocks_secret_key

src/main/resources/application-server.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,7 @@ sentry:
2828
environment: prod-server
2929
traces-sample-rate: 0.2
3030

31+
liveblocks:
32+
secret-key: test_dummy_liveblocks_secret_key
33+
34+

src/main/resources/application-test.yml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,32 @@ spring:
1717
init:
1818
mode: never
1919

20+
data: #RedisTemplate 등을 사용하기 위한 직접 연결용
21+
redis:
22+
host: localhost
23+
port: 6379
24+
timeout: 6000
25+
26+
security:
27+
oauth2:
28+
client:
29+
registration:
30+
kakao:
31+
redirect-uri: http://localhost:8080/login/oauth2/code/kakao
32+
google:
33+
redirect-uri: http://localhost:8080/login/oauth2/code/google
34+
35+
front:
36+
redirect_domain: http://localhost:3000
37+
2038
app:
2139
seed:
2240
enabled: false
2341

42+
sentry:
43+
send-default-pii: true
44+
environment: local
45+
traces-sample-rate: 0.0
46+
2447
liveblocks:
25-
secret-key: test_dummy_liveblocks_secret_key
48+
secret-key: test_dummy_liveblocks_secret_key

0 commit comments

Comments
 (0)