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 59bdf93
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
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 59bdf93

Please sign in to comment.