Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alvarorichard/armasecbank
This Java application manages banking operations, incorporating classes for branches, authentication, accounts, customers, and transactions
https://github.com/alvarorichard/armasecbank
bank console-application crud docker java server-side solid-principles
Last synced: about 2 months ago
JSON representation
This Java application manages banking operations, incorporating classes for branches, authentication, accounts, customers, and transactions
- Host: GitHub
- URL: https://github.com/alvarorichard/armasecbank
- Owner: alvarorichard
- License: gpl-3.0
- Created: 2023-03-10T17:33:39.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-25T01:54:38.000Z (11 months ago)
- Last Synced: 2024-05-11T05:45:44.331Z (9 months ago)
- Topics: bank, console-application, crud, docker, java, server-side, solid-principles
- Language: Java
- Homepage:
- Size: 82 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ArmaSecBank
[![GitHub license](https://img.shields.io/github/license/alvarorichard/ArmaSecBank)](alvarorichard/ArmaSecBank/blob/master/LICENSE)
![GitHub stars](https://img.shields.io/github/stars/alvarorichard/ArmaSecBank)
![Build Status](https://github.com/alvarorichard/ArmaSecBank/actions/workflows/ci.yml/badge.svg)
![GitHub languages top](https://img.shields.io/github/languages/top/alvarorichard/ArmaSecBank)
[![GitHub contributors](https://img.shields.io/github/contributors/alvarorichard/ArmaSecBank)](https://github.com/alvarorichard/ArmaSecBank/graphs/contributors)This project is a Java-based application designed for managing banking operations. It consists of several classes that represent different components of a bank, such as branches (Agencia), authentication (Autenticacao), bank accounts (Conta), customers (Pessoa), and transactions (Transacao).
## Installation
To install this project:
1. Ensure you have Java installed on your system. You can download Java from the official Oracle website.
2. Download the source code from this repository.
3. Extract the files to your preferred directory.
## Usage
To use this application:1. Open your command line or terminal.
2. Navigate to the directory where you extracted the project files.
3. Compile the Java files using the command: javac *.java
4. Run the main application file (assuming Sistema.java is your main file) using: java Sistema## Features
* Bank Branch Management: Handle operations related to bank branches.
* User Authentication: Securely manage user access.
* [Additional features based on other classes like Conta, Pessoa, Transacao, etc.]
## Running in IntelliJ IDEA
1. Install IntelliJ IDEA: Download and install IntelliJ IDEA from JetBrains.
2. Open the Project: Launch IntelliJ IDEA, select 'Open', and navigate to your project directory.
3. Import Project: IntelliJ IDEA will automatically recognize the Java files. If prompted, set the project SDK to the appropriate Java version.
4. Build and Run: Navigate to the main class (likely Sistema.java), right-click, and select 'Run [main class name].main()' to compile and run the project.
## Running in TerminalCompile the Project: Open your terminal, navigate to the project directory, and compile the Java files using:
```bash
javac *.java
```Run the Application: After compilation, run the main application file using:
```bash
java [main class name]
```## Running on docker
To run your Java application using Docker, follow these steps:
Build the Docker Image:
```bash
docker build -t arma-sec-bank .
```Run the Docker Container:
```bash
docker run arma-sec-bank
```## Contributing
Contributions to this project are welcome. Please follow these steps to contribute:1. Fork the repository.
2. Create a new branch for your feature or bug fix.
3. Commit your changes.
4. Push to the branch.
5. Submit a pull request