You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by vo...@apache.org on 2020/09/28 17:53:25 UTC

[fineract] branch vorburger-README-config-DB created (now 77d9567)

This is an automated email from the ASF dual-hosted git repository.

vorburger pushed a change to branch vorburger-README-config-DB
in repository https://gitbox.apache.org/repos/asf/fineract.git.


      at 77d9567  clarify DB config in README

This branch includes the following new commits:

     new 77d9567  clarify DB config in README

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[fineract] 01/01: clarify DB config in README

Posted by vo...@apache.org.
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 ⛑️ <mi...@vorburger.ch>
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
 ============