28 lines
332 B
Plaintext
28 lines
332 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
venv/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
|
|
# Data / outputs (never commit financial data)
|
|
*.xlsx
|
|
*.xls
|
|
*.csv
|
|
!tests/fixtures/*.xlsx
|
|
backend/data/*.db
|
|
backend/data/uploads/
|
|
backend/data/exports/
|
|
uploads/
|
|
exports/
|
|
|
|
# Node / frontend
|
|
node_modules/
|
|
frontend/dist/
|
|
.DS_Store
|
|
|
|
# Local config
|
|
.env
|
|
.env.local
|