https://github.com/maraf/money
Personal Expense Manager -- UWP (+ Blazor) and CQRS+ES.
https://github.com/maraf/money
blazor money-manager uwp uwp-applications uwp-apps
Last synced: about 1 year ago
JSON representation
Personal Expense Manager -- UWP (+ Blazor) and CQRS+ES.
- Host: GitHub
- URL: https://github.com/maraf/money
- Owner: maraf
- License: apache-2.0
- Created: 2016-11-15T20:21:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-04-09T17:55:58.000Z (about 1 year ago)
- Last Synced: 2025-04-09T18:52:56.634Z (about 1 year ago)
- Topics: blazor, money-manager, uwp, uwp-applications, uwp-apps
- Language: C#
- Homepage: https://money.neptuo.com
- Size: 8.95 MB
- Stars: 207
- Watchers: 10
- Forks: 35
- Open Issues: 79
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Money
Money is an outcome logging application written as UAP (UWP) to target both desktop and mobile Windows devices.
Get it from Microsoft Store.

Also, we have an implementation using [Blazor](https://github.com/aspnet/Blazor).

## Running the Blazor version locally
The Blazor version is a typical SPA web app with backend api. So you need to run two projects `Money.Api` & `Money.Blazor.Host`. We typically do it from cmd/pwsh:
### Api
```
dotnet watch run --project .\src\Money.Api\Money.Api.csproj
```
### Blazor
```
dotnet watch run --project .\src\Money.Blazor.Host\Money.Blazor.Host.csproj
```
## Blog posts
- [Blazor and the booting screen](https://www.neptuo.com/blog/2018/04/blazor-boot-screen/).
- [Blazor and complex component parameters](https://www.neptuo.com/blog/2018/06/blazor-component-parameters/).
- [Blazor and page parameters](https://www.neptuo.com/blog/2018/11/blazor-page-parameters/).
- [Blazor and network](https://www.neptuo.com/blog/2019/12/blazor-network-status/).
- [Blazor and the magic of App.razor](https://www.neptuo.com/blog/2020/03/blazor-app-razor).