forked from openmrs/openmrs-distro-referenceapplication
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OHRI-1952: Fix OHRI Mamba Reference Module - added mambaetl analysis …
…db connection props
- Loading branch information
Amos Laboso
committed
Nov 1, 2023
1 parent
b0b63a7
commit ecfab0a
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
distro/configuration/globalproperties/mambaetl_analysis_db_connection_props.xml
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,24 @@ | ||
<config> | ||
<globalProperties> | ||
<globalProperty> | ||
<property>mambaetl.analysis.db.url</property> | ||
<value>jdbc:mysql://localhost:3306/analysis_db?autoReconnect=true</value> | ||
<description>JDBC Connection string</description> | ||
</globalProperty> | ||
<globalProperty> | ||
<property>mambaetl.analysis.db.username</property> | ||
<value>mamba</value> | ||
<description>MambaETL username</description> | ||
</globalProperty> | ||
<globalProperty> | ||
<property>mambaetl.analysis.db.password</property> | ||
<value>p</value> | ||
<description>MambaETL user password</description> | ||
</globalProperty> | ||
<globalProperty> | ||
<property>mambaetl.analysis.db.driver</property> | ||
<value>com.mysql.jdbc.Driver</value> | ||
<description>MambaETL JDBC driver</description> | ||
</globalProperty> | ||
</globalProperties> | ||
</config> |