Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitboxer/ynab-dashboard
A simple dashboard for YNAB
https://github.com/bitboxer/ynab-dashboard
Last synced: 25 days ago
JSON representation
A simple dashboard for YNAB
- Host: GitHub
- URL: https://github.com/bitboxer/ynab-dashboard
- Owner: bitboxer
- License: mit
- Created: 2021-02-20T14:58:03.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-21T19:05:14.000Z (almost 4 years ago)
- Last Synced: 2024-12-12T21:37:08.580Z (27 days ago)
- Language: Pug
- Size: 70.3 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# YNAB Dashboard
A simple dashboard for showing your [YNAB](https://youneedabudget.com) budget.
![A screenshot of the dashboard with two items shown: rent and electricity](images/screenshot.png)
[![Deploy to heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/bitboxer/ynab-dashboard)
# Starting
```bash
yarn install
YNAB_ACCESS_TOKEN=token yarn start
```The token can be generated on [the developer settings page](https://app.youneedabudget.com/settings/developer).
After that you can open a webbrowser to see your budget:
`http://localhost:4000/BUDGETID`
BudgetID is the UUID of the budget you want to see. You can find it with looking at the URL of the
YNAB web site: `https://app.youneedabudget.com/BUDGETID/...`.Additionally you can filter and only show selected budgets like this:
`http://localhost:4000/BUDGETID?category=Food&category=Cats`
This code is inspired by [ynab-dashboard](https://github.com/computerwizjared/ynab-dashboard) by [Jared Bates](https://github.com/computerwizjared).