commit | 922151f40f4dd5912de6f60e00b164880a562a97 | [log] [tgz] |
---|---|---|
author | aasaru <aasaru@gmail.com> | Sat Oct 19 20:18:45 2019 +0300 |
committer | GitHub <noreply@github.com> | Sat Oct 19 20:18:45 2019 +0300 |
tree | f2cb47eb128258a540271068afc39697815bfe88 | |
parent | d18c45be0c0da494ac998773251598fefd693cc5 [diff] | |
parent | eb91ed73000ca0902449456fb068a409f3db6f18 [diff] |
Merge pull request #8 from aasaru/0.1.x stabilisation version
Data JPA provides easy access to tenant databases.
Apache Fineract CN is an application framework for digital financial services, a system to support nationwide and cross-national financial transactions and help to level and speed the creation of an inclusive, interconnected digital economy for every nation in the world.
Install Java 8 as described at https://docs.oracle.com/javase/8/docs/technotes/guides/install/install_overview.html.
Install MariaDB as described at https://mariadb.com/kb/en/mariadb/binary-packages/.
After installation you need to create the meta database:
mysql -u root -pmysql CREATE DATABASE IF NOT EXISTS system_console;
Multi-tenancy is reached by providing separate data storage on a per tenant basis.
For every tenant a new database instance is created internally. A tenant aware component provides transparent access to these resources.
The version numbers follow the Semantic Versioning scheme.
In addition to MAJOR.MINOR.PATCH the following postfixes are used to indicate the development state.
The versioning layout is {MAJOR}.{MINOR}.{PATCH}-{INDICATOR}[.{PATCH}]. Only milestones and release candidates can have patch versions. Some examples:
1.2.3-BUILD-SNAPSHOT
1.3.5-RELEASE
See LICENSE file.