Skip to content

apache/fineract-backoffice-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Fineract Backoffice UI

A modern Angular-based backoffice interface for Apache Fineract—the open-source core banking platform for fintechs and community banks. This UI connects to Fineract's REST APIs and is designed to be deployed alongside Fineract, enabling users to understand and operate core banking functionality through role-specific experiences.


Overview

The Fineract Backoffice UI provides a user-friendly way to interact with Fineract’s core features. It is built to mirror the capabilities of the Fineract platform and expose them through workflows tailored to key user profiles, so each role can focus on the tasks most relevant to them.


Key User Profiles & Core Functionality

1. Admin User

Admins manage the organizational setup, products, and staff. The UI supports:

Capability Description
Organization & Structure Manage offices, hierarchy, and organizational units
Product Setup Configure loan products, savings products, and charges with interest rules, grace periods, and fees
Staff & User Management Create and manage staff, assign roles, set permissions
Customer Management Create and manage customers, profiles, and organizational structure
Code Management Manage custom codes and lookups used across the system
Currency & Configuration Configure currencies, interest rates, and organization-level settings

2. Loan Officer

Loan officers focus on customer relationships and loan lifecycle. The UI supports:

Capability Description
Customer Portfolio View assigned customers, their profiles, financial history, and identification
Loan Applications Create and submit loan applications for customers
Disbursements Process single or multi-stage disbursements based on milestones
Repayments Record repayments and track collection status
Loan Tracking View loan status, amortization schedules, delinquency, and arrears
Collections Monitor overdue loans and apply penalties where configured

3. System Admin

System admins handle security, audit, and infrastructure. The UI supports:

Capability Description
User Roles & Permissions Define roles and assign granular permissions to staff
Audit & Reporting Access audit logs, activity history, and system reports
Security Configuration Manage authentication, passwords, and security settings
System Health Monitor API status, integrations, and system health
Batch Jobs View and manage scheduled batch jobs (e.g., interest posting, delinquency)
Data Management Export data and manage system backups where applicable

Technology Stack

  • Framework: Angular
  • Backend Integration: Fineract REST API (e.g. /fineract-provider/api/v1/)
  • Authentication: Fineract-based auth (basic auth or token-based)
  • Deployment: Designed to run alongside Fineract (e.g. Docker, reverse proxy)

Architecture

┌─────────────────────┐         REST API          ┌─────────────────────┐
│  Fineract Backoffice │ ─────────────────────────▶│   Apache Fineract   │
│  UI (Angular SPA)   │  HTTPS (e.g. :8443)       │   (Core Platform)   │
└─────────────────────┘                            └─────────────────────┘
                                                              │
                                                              ▼
                                                    ┌─────────────────────┐
                                                    │   Database          │
                                                    │   (PostgreSQL /     │
                                                    │   MariaDB)          │
                                                    └─────────────────────┘

Prerequisites

  • Node.js (v18 or later recommended) and npm or yarn
  • Angular CLI (npm i -g @angular/cli)
  • Apache Fineract instance (e.g. via Docker: docker run -d -p 8443:8443 apache/fineract:latest)
  • Access to Fineract REST API (default demo: mifos / password on https://localhost:8443/fineract-provider/api/v1)

Getting Started

Development

# Install dependencies
npm install

# Configure API base URL (e.g. in environment files)
# Default: https://localhost:8443/fineract-provider/api/v1

# Run development server
ng serve

Access the app at http://localhost:4200 (or the configured port).

Configuration

  • API Base URL: Point to your Fineract instance (e.g. https://your-fineract-host:8443/fineract-provider/api/v1)
  • Authentication: Use Fineract credentials; the UI will send them according to your auth strategy.

Deployment with Fineract

The UI is built as a static SPA and can be deployed together with Fineract:

  1. Standalone Build + Reverse Proxy

    • Build: ng build --configuration production
    • Serve output (e.g. dist/) via NGINX or similar
    • Configure reverse proxy so the UI and Fineract share the same origin or CORS allow the API domain
  2. Docker (co-located)

    • Use apache/fineract image for the backend
    • Add an Angular build step and serve the static files from NGINX or another web server alongside Fineract
  3. Single Domain Example (NGINX)

    /          → Angular app (static files)
    /api/      → proxy to Fineract (https://fineract:8443/fineract-provider/api/v1)
    

Fineract API Reference


License

Copyright 2025 The Apache Software Foundation

Licensed under the Apache License, Version 2.0. See LICENSE for details.

About

Apache fineract

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors