mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 13:51:55 +00:00
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
| app | ||
| test | ||
| .bowerrc | ||
| .gitignore | ||
| .jshintrc | ||
| .travis.yml | ||
| bower.json | ||
| Gruntfile.js | ||
| karma-e2e.conf.js | ||
| karma.conf.js | ||
| package.json | ||
| README.md | ||
Online Demo
Access the online demo version here
Building from source
-
Note: Ensure you have
npminstalled - goto http://nodejs.org/download/ to downloand installer for your OS. -
Clone this respository to your local filesystem (default branch in 'master')
-
To download the dependencies, and be able to build, first install bower & grunt:
npm install -g bower
npm install -g grunt-cli
- Next pull the runtime and build time dependencies by running bower and npm install on the project root folder:
bower install
npm install
-
Now open the 'index.html' file in FIREFOX browser.
-
Default username/password: mifos/password. This application will hit the demo server by default.
You are done.
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 the tests
Just open test/SpecRunner.html in the browser.