-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#39 moving to yaml properties files, leveraging include in main appli…
…cation.yaml
- Loading branch information
Pieter Van Eeckhout
committed
Jun 27, 2023
1 parent
1261417
commit e336ce2
Showing
5 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
12 changes: 0 additions & 12 deletions
12
boot/src/main/java/io/edpn/backend/configuration/PropertyConfig.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ spring: | |
config: | ||
import: | ||
- trademodule.yaml | ||
- usermodule.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
spring: | ||
datasource: | ||
url: jdbc:postgresql://localhost:54322/usermodule | ||
username: edpn_usermodule | ||
password: hvWYDHqG3yXCKReH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
spring: | ||
liquibase: | ||
enabled: true | ||
change-log: classpath:db/usermodule/changelog/usermodule-changelog.xml | ||
|
||
datasource: | ||
url: ${USERMODULE_DB_URL} | ||
username: ${USERMODULE_DB_USERNAME} | ||
password: ${USERMODULE_DB_PASSWORD} | ||
driver-class-name: org.postgresql.Driver |