Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theaxelander/openbudgeteer
OpenBudgeteer is a budgeting app based on the Bucket Budgeting Principle
https://github.com/theaxelander/openbudgeteer
accounting blazor budgeting csharp docker dotnet financial money self-hosted web-app web-application
Last synced: 25 days ago
JSON representation
OpenBudgeteer is a budgeting app based on the Bucket Budgeting Principle
- Host: GitHub
- URL: https://github.com/theaxelander/openbudgeteer
- Owner: TheAxelander
- License: mit
- Created: 2021-11-05T11:13:09.000Z (about 3 years ago)
- Default Branch: pre-release
- Last Pushed: 2024-09-04T07:25:34.000Z (2 months ago)
- Last Synced: 2024-10-14T05:22:38.700Z (25 days ago)
- Topics: accounting, blazor, budgeting, csharp, docker, dotnet, financial, money, self-hosted, web-app, web-application
- Language: C#
- Homepage: https://theaxelander.github.io
- Size: 3.01 MB
- Stars: 784
- Watchers: 12
- Forks: 43
- Open Issues: 32
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
OpenBudgeteer is a budgeting app based on the Bucket Budgeting Principle and inspired by [YNAB](https://www.youneedabudget.com) and [Buckets](https://www.budgetwithbuckets.com). The Core is based on .NET and the MVVM Pattern, the Front End uses Blazor Server.
![Screenshot 1](assets/screenshot1.png)
--------------------
## Documentation
Within the [Documentation](https://theaxelander.github.io) you will find all the details how to install and setup OpenBudgeteer and how it is used. Some sections are still WIP but you should find the most important things that were previously maintained here in the README.
## Quick Start
For a quick ramp-up up of OpenBudgeteer using Docker and MariaDB use below docker compose.
```yml
services:
openbudgeteer:
image: axelander/openbudgeteer:latest
#image: axelander/openbudgeteer:pre-release
#image: axelander/openbudgeteer:1.7
container_name: openbudgeteer
ports:
- 8080:8080
environment:
- CONNECTION_PROVIDER=mariadb
- CONNECTION_SERVER=openbudgeteer-mysql
- CONNECTION_PORT=3306
- CONNECTION_DATABASE=openbudgeteer
- CONNECTION_USER=openbudgeteer
- CONNECTION_PASSWORD=openbudgeteer
- APPSETTINGS_CULTURE=en-US
- APPSETTINGS_THEME=solar
depends_on:
- mariadb
mariadb:
image: mariadb
container_name: openbudgeteer-mysql
environment:
MYSQL_ROOT_PASSWORD: myRootPassword
volumes:
- data:/var/lib/mysql
# optional
phpmyadmin:
image: phpmyadmin/phpmyadmin
container_name: openbudgeteer-phpmyadmin
links:
- mariadb:db
ports:
- 8081:80
volumes:
data:
```