This is an automated email from the ASF dual-hosted git repository. vorburger pushed a commit to branch vorburger-README-config-DB in repository https://gitbox.apache.org/repos/asf/fineract.git
commit 77d9567ff5d8ae4b0e368e118964ce5d2b41f532 Author: Michael Vorburger ⛑️ <[email protected]> AuthorDate: Mon Sep 28 19:53:14 2020 +0200 clarify DB config in README --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 8f71325..6384d35 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,12 @@ Instructions to build the JAR file 2. Run `./gradlew clean bootJar` to build a modern cloud native fully self contained JAR file which will be created at `build/libs` directory. 3. Start it using `java -jar build/libs/fineract-provider.jar` (does not require external Tomcat) +The tenants database connection details are configured [via environment variables (as with Docker container)](#instructions-to-run-using-docker-and-docker-compose), e.g. like this: + + export fineract_tenants_pwd=verysecret + ... + java -jar fineract-provider.jar + Instructions to build a WAR file ============ @@ -58,6 +64,8 @@ Instructions to build a WAR file We recommend using the JAR instead of the WAR file deployment, because it's much easier. +Note that with the 1.4 release the tenants database pool configuration changed from Tomcat DBCP in XML to an embedded Hikari, configured by environment variables, see above. + Instructions to execute Integration Tests ============
