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.
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.
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 |
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 |
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 |
- 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)
┌─────────────────────┐ REST API ┌─────────────────────┐
│ Fineract Backoffice │ ─────────────────────────▶│ Apache Fineract │
│ UI (Angular SPA) │ HTTPS (e.g. :8443) │ (Core Platform) │
└─────────────────────┘ └─────────────────────┘
│
▼
┌─────────────────────┐
│ Database │
│ (PostgreSQL / │
│ MariaDB) │
└─────────────────────┘
- 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/passwordonhttps://localhost:8443/fineract-provider/api/v1)
# 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 serveAccess the app at http://localhost:4200 (or the configured port).
- 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.
The UI is built as a static SPA and can be deployed together with Fineract:
-
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
- Build:
-
Docker (co-located)
- Use
apache/fineractimage for the backend - Add an Angular build step and serve the static files from NGINX or another web server alongside Fineract
- Use
-
Single Domain Example (NGINX)
/ → Angular app (static files) /api/ → proxy to Fineract (https://fineract:8443/fineract-provider/api/v1)
- Fineract API Docs
- Swagger / API Explorer (demo instance)
Copyright 2025 The Apache Software Foundation
Licensed under the Apache License, Version 2.0. See LICENSE for details.