Skip to content

Commit

Permalink
fix: 분리한 설정 정보 적용(test, local, dev, live)
Browse files Browse the repository at this point in the history
  • Loading branch information
egg528 committed Jan 14, 2024
1 parent 166ba43 commit 127f0d1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions backend/application/admin/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spring:
profiles:
group:
local:
- db-core
- db-core-local
- image

---
Expand All @@ -31,7 +31,7 @@ spring:
profiles:
group:
dev:
- db-core
- db-core-dev
- image

---
Expand All @@ -40,5 +40,5 @@ spring:
profiles:
group:
live:
- db-core
- db-core-live
- image
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ spring:
profiles:
group:
test:
- db-core
- db-core-test
- image
12 changes: 6 additions & 6 deletions backend/application/api/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ spring:
profiles:
group:
local:
- security
- db-core
- security-local
- db-core-local
- logging
- metrics

Expand All @@ -32,8 +32,8 @@ spring:
profiles:
group:
dev:
- security
- db-core
- security-dev
- db-core-dev
- logging
- metrics
---
Expand All @@ -42,7 +42,7 @@ spring:
profiles:
group:
live:
- security
- db-core
- security-live
- db-core-live
- logging
- metrics
4 changes: 2 additions & 2 deletions backend/application/api/src/test/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spring:
profiles:
group:
test:
- security
- db-core
- security-test
- db-core-test
- logging
- metrics

0 comments on commit 127f0d1

Please sign in to comment.