Repository: incubator-fineract Updated Branches: refs/heads/0.3.0-incubating f310cc0f5 -> 095dca99d
adding disclaimer on 0.3.0 branch Project: http://git-wip-us.apache.org/repos/asf/incubator-fineract/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-fineract/commit/095dca99 Tree: http://git-wip-us.apache.org/repos/asf/incubator-fineract/tree/095dca99 Diff: http://git-wip-us.apache.org/repos/asf/incubator-fineract/diff/095dca99 Branch: refs/heads/0.3.0-incubating Commit: 095dca99df9fc177dac98f11bce894ca4359372f Parents: f310cc0 Author: Nazeer Hussain Shaik <[email protected]> Authored: Wed Jun 29 14:27:59 2016 +0530 Committer: Nazeer Hussain Shaik <[email protected]> Committed: Wed Jun 29 14:27:59 2016 +0530 ---------------------------------------------------------------------- DISCLAIMER | 1 + README.md | 83 +++++++++++++++------------------------------------------ 2 files changed, 22 insertions(+), 62 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-fineract/blob/095dca99/DISCLAIMER ---------------------------------------------------------------------- diff --git a/DISCLAIMER b/DISCLAIMER new file mode 100644 index 0000000..3854c36 --- /dev/null +++ b/DISCLAIMER @@ -0,0 +1 @@ +Apache Fineract is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF. \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-fineract/blob/095dca99/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 11f8b64..8e9b096 100644 --- a/README.md +++ b/README.md @@ -1,72 +1,31 @@ Apache Fineract: A Platform for Microfinance -====== +============ The next evolution of fineract focussing on being faster, lighter and cheaper to change (than existing mifos) so that it is more responsive to the needs of MFIâs and Integrators -Build Status +Requirements ============ +. Java >= 1.8 (Oracle JVMS have been tested) +. gradle-wrapper.jar version 2.10 +. MySQL 5.5 -Travis - -[](https://travis-ci.org/openMF/mifosx) - -Cloudbees Jenkins - -[](https://openmf.ci.cloudbees.com/job/MIFOSX%20INTEGRATION%20TEST/) - -<a target="_blank" href="https://openmf.ci.cloudbees.com/job/MIFOSX%20INTEGRATION%20TEST/" title="Jenkins@CloudBees">Jenkins@CloudBees Unit + Integration Tests</a> - - -Version -========== - -The API for the fineract-platform (project named 'Apache Fineract')is documented in the api-docs under <b>Full API Matrix</b> and can be viewed <a target="_blank" href="https://demo.openmf.org/api-docs/apiLive.htm" title="API Documentation"> here -</a> - -Latest stable release can always been viewed on master branch: <a target="_blank" href="https://github.com/openMF/mifosx/tree/master" title="Latest Release">Latest Release on Master</a>, <a target="_blank" href="https://github.com/openMF/mifosx/blob/master/CHANGELOG.md" title="Latest release change log">View change log</a> - -License -============= - -This project is licensed under the open source MPL V2. See https://github.com/openMF/mifosx/blob/master/LICENSE.md - -Fineract Platform API -===================== - -<a target="_blank" href="https://demo.openmf.org/api-docs/apiLive.htm" title="fineract platform api">API Documentation (Demo Server)</a> - - -Online Demos -============================= - -* <a target="_blank" href="https://demo.openmf.org" title="Reference Client App">Community App</a> -* ~~<a target="_blank" href="https://demo.openmf.org/old/" title="Community App">Reference Client App (Deprecated)</a>~~ - -Developers -========== -see https://mifosforge.jira.com/wiki/display/MIFOSX/MifosX+Technical - Developers Wiki Page - -see https://mifosforge.jira.com/wiki/display/MIFOSX/Getting+started+-+Contributing+to+MifosX - Getting Started. - -see https://mifosforge.jira.com/wiki/display/MIFOSX/The+Basic+Design - Overview of Platform Implementation - -see https://github.com/openMF/mifosx/wiki/Screen-Based-Reporting for info around reporting - -see https://github.com/openMF/mifosx/wiki/Git-Usuage for info around using git - -see https://www.ohloh.net/p/mifosx for activity overview and basic code analysis. - -Roadmap -============== +Instructions to build war file +============ -<a target="_blank" href="http://goo.gl/IXS9Q" title="Community Roadmap (High Level)">Community Roadmap (High Level)</a> +1. Extract the archive file to your local directory +2. Download gradle-wrapper.jar version 2.10 and place it in fineract-provider/gradle/wrapper folder +3. Change current working directory to fineract-provider +4. Run './gradlew clean war' to build deployable war file which will be created at fineract-provider/build/libs directory -<a target="_blank" href="https://mifosforge.jira.com/browse/MIFOSX#selectedTab=com.atlassian.jira.plugin.system.project%3Aroadmap-panel" - title="Project Release Roadmap on JIRA (Detailed View)">Project Release Roadmap on JIRA (Detailed View)</a> +Instructions to execute Integration tests +============ +1. Login to mysql DB using 'mysql -u root -pmysql' +2. Create mifosplatform-tenants database using create database `mifosplatform-tenants`; +3. Create default tenant database using create database `mifostenant-default`; +4. With fineract-provider as current working directory run below commands +4.a. ./gradlew migrateTenantListDB -PdbName=mifosplatform-tenants +4.b. ./gradlew migrateTenantDB -PdbName=mifostenant-default +5. Run './gradlew clean integrationTest' -Video Demonstration -=============== -Demonstration of first Prototype of this platform with browser App (April 2012) - http://www.youtube.com/watch?v=zN5Dn1Lc_js +More details of the project can be found at https://cwiki.apache.org/confluence/display/FINERACT \ No newline at end of file
