https://github.com/morgankryze/bankingexplorer
A small C# Banking app that let you follow your incomes and outcomes
https://github.com/morgankryze/bankingexplorer
console-application csharp visuals
Last synced: 2 months ago
JSON representation
A small C# Banking app that let you follow your incomes and outcomes
- Host: GitHub
- URL: https://github.com/morgankryze/bankingexplorer
- Owner: MorganKryze
- License: mit
- Created: 2023-11-16T16:31:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-19T23:52:24.000Z (about 1 year ago)
- Last Synced: 2025-01-16T15:34:22.815Z (4 months ago)
- Topics: console-application, csharp, visuals
- Language: C#
- Homepage:
- Size: 179 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BankingAssistant
## Install
Download the project as a zip file and extract it (or clone the repository) in a safe place.
No more installation is required.
## Usage
Then open a terminal at "BankingAssistant" and type the following commands:
```bash
cd program
``````bash
dotnet run
```### Optional
You may create a shortcut to the program and place it on your desktop:
Create a shell file named "BankingAssistant.sh" with the following content:
```bash
#!/bin/bash
cd /absolute/path/to/BankingAssistant/program
dotnet run
```Then make it executable:
```bash
chmod +x BankingAssistant.sh
```Then make your terminal application the default application to open shell files.
Then you can double click on the file to run the program.
#### Notes
If you encounter an issue with the terminal not being able to find the dotnet command, you may need to add the dotnet directory to your PATH environment variable.
If your shell file cannont find a C# project to execute, make sure that the path you entered goes from the location of the shell to the "program" directory (Most of all: DON'T MOVE THE SHELL FILE, or you would have to update the path).
## Interraction
The interraction is pretty easy, you just have to follow the commands given on the footer on the screen.
If you update the screen size, go to the home page of the program and select "Update screen size"(third option).
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
## License
This project is under the [MIT](https://choosealicense.com/licenses/mit/) license.