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: about 2 months ago
JSON representation

OpenBudgeteer is a budgeting app based on the Bucket Budgeting Principle

Lists

README

        


OpenBudgeteer banner



Docker Image pre-release


Docker Image latest




Mentioned in Awesome-Selfhosted

Docker Pulls
GitHub release (latest by date)

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 Sqlite use below command or docker compose.

### docker run

```bash
docker run -d --name='openbudgeteer' \
-e 'CONNECTION_PROVIDER'='SQLITE' \
-e 'CONNECTION_DATABASE'='/srv/openbudgeteer.db' \
-p 8080:8080 \
-v 'data:/srv' \
'axelander/openbudgeteer:latest' # alternatively use 'pre-release' or a specific version tag
```

### docker compose

```yml
version: "3"

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=SQLITE
- CONNECTION_DATABASE=/srv/openbudgeteer.db
volumes:
- data:/srv

volumes:
data:
```