forked from PSMRI/Helpline104-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI build properties, add pom.xml plugins to tweak build process (P…
…SMRI#18) * Add CI build properties, add pom.xml plugins to tweak build process * Add propeties file
- Loading branch information
Showing
6 changed files
with
70 additions
and
12 deletions.
There are no files selected for viewing
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 @@ | ||
1.8 |
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,19 @@ | ||
# local env | ||
# DB Connections | ||
## Primary db | ||
spring.datasource.url=@env.DATABASE_URL@ | ||
spring.datasource.username=@env.DATABASE_USERNAME@ | ||
spring.datasource.password=@env.DATABASE_PASSWORD@ | ||
spring.datasource.driver-class-name=com.mysql.jdbc.Driver | ||
|
||
secondary.datasource.username=@env.REPORTING_DATABASE_USERNAME@ | ||
secondary.datasource.password=@env.REPORTING_DATABASE_PASSWORD@ | ||
secondary.datasource.url=@env.REPORTING_DATABASE_URL@ | ||
secondary.datasource.driver-class-name=com.mysql.jdbc.Driver | ||
|
||
# Common Config | ||
common-url=@env.COMMON_API_BASE_URL@ | ||
|
||
### Redis IP | ||
spring.redis.host=localhost | ||
|
File renamed without changes.
File renamed without changes.