Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

Note: Mifos X Platform is now being developed as the Apache Fineract project. For updated instructions/information please go to https://cwiki.apache.org/confluence/display/FINERACT/Fineract+Home 

Before you try to build, make sure you have the correct tools, and have configured these tools correctly. See Prerequisite for more details.

Get the Source

For either the Mifos X Financial Service Engine, or the Mifos X Community App getting the source is similar.

Master and Develop branches

By default when using git you will always have a branch named 'master'. On Mifos X we use another branch for any current development which we want to put in the next release. It is called 'develop'. You should checkout this branch also.

  • master: represents the latest stable release of Mifos X.

  • develop: represents the bleeding edge development changes planned for next release of Mifos X. 

Panel

On this page:

Table of Contents

Initial setup

If you don't have a github account already then you need to sign up and create one on on github.com (free accounts are fine).

Once you have a github account, the next step is to clone it from 

Or 
If you are working on Pentaho reports, you need to clone the code from 
https://github.com/openMF/incubator-fineract

 & For community-app you need to clone the code from 
See https://help.github.com/articles/fork-a-repo for help on forking in github.

Clone the repository

Create a directory in which you want the cloned project to exist within: e.g. in directory ~/repo

Code Block
languagebash
git clone [fork repository url]

See https://help.github.com/articles/which-remote-url-should-i-use.

Configure remotes

When a repository is cloned, it has a default remote called origin that points to your fork on GitHub, not the original repository it was forked from. To keep track of the original repository, you should add another remote named upstream:

The easiest way is to use the https url:

Code Block
languagebash
Go inside the incubator-fineract/fineract-provider folder
    git remote add upstream https://github.com/apache/incubator-fineract.git 
or If you are working on Pentaho reports,then 
    git remote add upstream https://github.com/openMF/incubator-fineract.git
& For community-app, go inside community folder 
    git remote add upstream https://github.com/openMF/community-app.git

or if you have ssh set up you can use that url instead:

Code Block
languagebash
git remote add upstream git@github.com:apache/[incubator-fineract | community-app].git 
 
or If you are working on Pentaho reports,then 
git remote add upstream git@github.com:openMF/[incubator-fineract | community-app].git 

Keep up to date

There will be development changes to both repositories almost every day for the foreseeable future so its important to keep your fork of the software up to date with the latest changes.

To pull in upstream changes from repository you forked:

Code Block
languagebash
git checkout develop
git fetch upstream
git merge upstream/develop
Warning

You should not have any local changes on your master branch, if you do, use rebase!

Once you have pulled all latest changes and your build was successful, push the just merged changes to the develop branch on your fork.

Code Block
languagebash
git push origin develop

Build

After setting up your environment, and downloading the source, refer to the following per-project instructions on how to build, or see Eclipse Setup or IntelliJ IDEA Setup to configure your IDE:

Mifos X Financial Service Engine

We use Gradle to build the Mifos X Financial Service Engine.

To run a build change into the directory [your project root]/incubator-fineract/fineract-provider, and execute:

Code Block
languagebash
cd ~/repo/incubator-fineract/fineract-provider
./gradlew dist

This command will download all dependencies, compiles all sources, and executes all unit tests.

To run integration tests make sure you have installed and setup the database, execute:

Code Block
languagebash
./gradlew integrationTest

Mifos X Community App

grunt is used to build production ready artefacts:

Code Block
languagebash
cd ~/repo/community-app
# Pull run- and build time dependencies
bower install
npm install
# Create a production ready artefact
grunt prod
Info

Go to bower.io for instructions on installing Bower.

For development purposes you can serve the application by simply calling:

Code Block
languagebash
cd ~/repo/community-app
grunt serve
Info

Then to log in,

http://localhost:9000/?baseApiUrl=https://localhost:8443#/ OR https://localhost:8443/fineract-provider/api/v1/offices?tenantIdentifier=default