Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add analysis user story #13

Merged
merged 3 commits into from
Apr 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/wiki-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Lint Markdown

on:
pull_request:
paths:
- 'wiki/**'
workflow_dispatch:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Markdown lint
uses: DavidAnson/markdownlint-cli2-action@v15
with:
globs: 'wiki/**/*.md'
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
"lint": "next lint",
"start": "next start"
},
"markdownlint-cli2": {
"config": {
"MD033": false
}
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
Expand Down
2 changes: 2 additions & 0 deletions wiki/home.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# Home

First wiki entry.
341 changes: 341 additions & 0 deletions wiki/user_stories/analysis.drawio.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions wiki/user_stories/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# User Stories

This is a collection of user stories.
It's meant to be flexible over time; accordingly, the list below is not ordered.

## Analyze

As an End User, I want to see what I spend my money on in the selected time period.

Acceptance Criteria:

- [ ] Selectable time period
- [ ] Selection of graphs for a quick overview
- [ ] Ability to filter transactions based on category
- [ ] Ability to list transactions in a tabular view
- [ ] Summary numbers at the top

<details>
<summary>Mock-up</summary>
<img src="analysis.drawio.svg" alt="Mockup of the Analyze Story">
</details>