34 lines
884 B
Markdown
34 lines
884 B
Markdown
# schmeckels
|
|
|
|
## ToDo
|
|
|
|
- Graphen
|
|
- Linechart Verlauf über Monate (Gesamtetrag)
|
|
- Piechart verschiedene Tags
|
|
- Übersicht auf Startseite
|
|
- Monatsübersicht dieser/letzter Monat
|
|
- Anzahl ungetaggte Transaktionen
|
|
- Importer über Webseite
|
|
- setup.py
|
|
- Doku
|
|
|
|
|
|
## Example rules
|
|
The rules file must be valid YAML and contain a list of all rules. A rule must contain:
|
|
* a list of comma seperated tags
|
|
* one or more matching RegExp via the name, iban or description field
|
|
|
|
Matching for the IBAN is made with direct comparison, so you have to enter the full IBAN. Matching for name and
|
|
description is done via regular expressions.
|
|
|
|
```yaml
|
|
# Match on the senders name
|
|
- name: "SUBWAY.*"
|
|
tags: "FastFood"
|
|
|
|
# Match on the senders IBAN AND the description
|
|
- iban: "DE88500700100175526303"
|
|
description: ".*VULTRHOLDIN.*"
|
|
tags: "Hosting, Server" # Apply multiple tags
|
|
|
|
```
|