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 bfee248
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 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
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://${DB-URL}
username: ${DB-USERNAME}
password: ${DB-PASSWORD}
url: jdbc:mysql://www.one-bailey.o-r.kr:3306
username: root
password: rootgaza
hikari:
pool-name: db-core-pool

0 comments on commit bfee248

Please sign in to comment.