-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
55 lines (47 loc) · 1.15 KB
/
Copy path.gitignore
File metadata and controls
55 lines (47 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# === Secrets & personal data — NEVER commit ===
# (No inline comments after a path: '#' mid-line is part of the pattern, not a comment.)
.env
# real accounts/targets (use strategy.example.yaml)
config/strategy.yaml
# real (use categorization.example.yaml)
rules/categorization.yaml
# real account -> ID mapping (use config.example.json)
importer/config/config.json
importer/config/import_config_*.json
# Private provider plugins (concrete banks/brokers) — the personal data layer.
# Everything under providers/ is local except the contract doc and the example.
providers/*
!providers/README.md
!providers/example/
!providers/example/**
# Local-only personal docs (diagnostics, objectives)
docs-local/
# Runtime data (transactions, backups, imports, DB, logs, state)
data/
importer/imports/
postgres/
firefly-iii/upload/
firefly-iii/backup/
firefly-iii/oauth-*.key
# Python
__pycache__/
*.py[cod]
.venv/
*.egg-info/
# Web build/deps
node_modules/
web/ui/dist/
*.tsbuildinfo
web/ui/vite.config.js
web/ui/vite.config.d.ts
# Misc
.vscode/
.idea/
.DS_Store
Thumbs.db
session-*.md
# local DB dumps (PII)
data-backup-precutover.sql.gz
*.sql.gz
# dev server pids/logs
.run/