A modern, responsive frontend application for the RAYBANK banking system. This Angular-based UI provides a comprehensive interface for managing clients and accounts, offering detailed statistics and transaction management.
BankingUI is designed to work with the BankingService backend. It provides a complete banking management interface with features for client management, account management, and banking statistics.
-
Client Management
- View list of all clients
- View detailed client information
- Add new clients
- Update existing client information
-
Account Management
- View list of all accounts
- View detailed account information
- Create new accounts (current and savings accounts)
- Update account details
- Close accounts
-
Statistics Dashboard
- Overview of key banking metrics
- Number of clients and accounts
- Total credit and debit amounts
- Average balance, credit, and debit statistics
- Angular 19.2.7 - Frontend framework
- Bootstrap 5.3.5 - UI component library
- ng-bootstrap 18.0.0 - Angular-specific Bootstrap components
- FontAwesome - Icon library
- RxJS - Reactive programming library
- Luxon - Date/time handling library
- Node.js (latest LTS version recommended)
- npm or pnpm package manager
- BankingService backend running locally or accessible via network
-
Clone the repository:
git clone <repository-url> cd BankingUI
-
Install dependencies:
npm install # or if using pnpm pnpm install
-
Configure the backend connection:
- For development, update
src/environments/environment.development.ts
with your backend URL - For production, update
src/environments/environment.ts
with your production backend URL
- For development, update
ng serve
Navigate to http://localhost:4200/
in your browser. The application will automatically reload if you change any of the source files.
ng build
The build artifacts will be stored in the dist/
directory.
src/
├── app/
│ ├── accounts/ # Account management features
│ ├── clients/ # Client management features
│ ├── common/ # Shared components and utilities
│ ├── entries/ # Transaction entries management
│ ├── styles/ # Global styles
│ ├── app.component.* # Root component
│ ├── app.config.ts # App configuration
│ └── app.routes.ts # Application routes
├── environments/ # Environment configuration
├── assets/ # Static assets
└── index.html # Main HTML file
The application connects to the BankingService backend API. By default, it expects the backend to be running at:
- Development:
http://localhost:8080/api/v2
- Production: Configure your production URL in
src/environments/environment.ts
The API provides endpoints for:
- Client management
- Account management (current accounts and savings accounts)
- Transaction entries
ng generate component component-name
ng test
ng e2e
- Angular Documentation
- Bootstrap Documentation
- BankingService Backend Repository
- BankingService API specification
This project is licensed under the MIT License - see the LICENSE file for details.