An open API service indexing awesome lists of open source software.

https://github.com/csxv/bms

terminal C++ application to manage bank system
https://github.com/csxv/bms

cpp

Last synced: 4 months ago
JSON representation

terminal C++ application to manage bank system

Awesome Lists containing this project

README

          

# Bank Management System

![Screenshot](Pics/screenshot.gif)

Terminal C++ program, let users manage a bank system with clients.

NOTE: Tested on Linux only.

---
## How to use
1. Clone this repo.
2. Build the project by running `Make.sh` file.
3. Run the program, use `.\outDebug`.

---
## Files
1. Main file is `test.cpp`.
2. `Clients.txt`: Stores clients data.
3. `Currencies.txt`: Stores countries currency data.
4. `LoginRegister.txt`: Stores successful logins to the system along with a time stamp.
5. `Users.txt`: Stores system users data along with there system permissions and password, increpted with simple cypher.
6. `TransferLog.txt`: Stores successful client account transaction, along with a time stamp, and the user who made it.

---