This is the default web application built on top of the Apache Fineract platform. The Mifos X Web App (formerly called Community App) is maintained by the Mifos Initiative as a reference solution for the financial inclusion community. It is a Single-Page App (SPA) written in web standard technologies like JavaScript, CSS and HTML5. It leverages common popular frameworks/libraries such as AngularJS 1.5, Bootstrap and Font Awesome
Go to file
2013-12-19 12:51:04 +05:30
app fixed issues #631, #632 2013-12-19 12:51:04 +05:30
test removed comments from failing tests 2013-12-11 11:22:05 -06:00
.bowerrc vertical slicing! 2013-09-13 10:49:03 +05:30
.gitignore Fixed running 'bower install' during gradle install WAR build (it didn't 2013-12-06 20:36:21 +01:00
.jshintrc .jshintrc ignore indentation issues - we'd have bigger fish to fry, first 2013-10-20 08:55:00 +02:00
.project Eclipse .project to be able to easily File > Open in E 2013-11-12 11:09:24 +01:00
.travis.yml added npm bower install 2013-12-12 13:34:26 -06:00
bower.json added export csv to report type table 2013-12-10 17:29:27 +05:30
build.gradle Fixed running 'bower install' during gradle install WAR build (it didn't 2013-12-06 20:36:21 +01:00
Contributing.md adds unit test documentation 2013-12-03 16:07:11 -06:00
Gruntfile.js removed olark code from production build 2013-12-14 18:07:07 +05:30
karma-e2e.conf.js Grunt Karm - as proposed by Yeoman (forgot to commit earlier). Not really working as it should, yet 2013-10-20 09:13:24 +02:00
karma.conf.js added other relative paths 2013-12-11 16:09:25 -06:00
package.json removed olark code from production build 2013-12-14 18:07:07 +05:30
README.md testing travis ci 2013-12-11 14:31:10 -06:00

Online Demo

Access the online demo version here

Building from source

  1. Note: Ensure you have npm installed - goto http://nodejs.org/download/ to downloand installer for your OS.

  2. Clone this repository to your local filesystem (default branch in 'master')

  3. To download the dependencies, and be able to build, first install bower & grunt:

npm install -g bower
npm install -g grunt-cli
  1. Next pull the runtime and build time dependencies by running bower and npm install commands on the project root folder:
 bower install
 npm install 
  1. Check the backend server HOST settings in the community-app\app\scripts\modules\configuration.js file. If you are connecting to a non local host, then you may need to change the API_URL_OVERRIDE value to false.

  2. Now open the 'index.html' file in FIREFOX browser.

  3. Default username/password: mifos/password. This application will hit the demo server by default.

You are done.

Connecting to a MifosX Platform running on a different host:

By default, when the app is running in the local filesystem or on http://localhost, it will connect to demo.openmf.org. The UI will connect to the mifosng-provider REST API running on the same host/port when running in the cloud.

If you want to connect to the API running elsewhere, then append the baseApiUrl as a query parameter, e.g. http://localhost:9090/app/index.html?baseApiUrl=https://localhost:8443/#/.

Adding dependencies

You can also add more dependencies on bower.json. You can search for them in http://sindresorhus.com/bower-components/ or even:

bower search <package>

Running grunt tasks

Grunt tasks are used to automate repetitive tasks like minification, compilation, unit testing, linting, production builds, etc

Following are the tasks integrated.

Compilation

Compile the JS files to detect errors and potential problems in JavaScript code. All errors output will be written to jshint-log.xml file which get created under project base directory.

grunt compile

Build

Build the code for production deployment.

grunt prod

Running the tests

Just open test/SpecRunner.html in the browser.

Contribution guidelines

Please read the contribution guidelines

Testing