From 60ecf7a2aa574f554271ae839904f37af7442743 Mon Sep 17 00:00:00 2001 From: Yutsuo Date: Thu, 20 Aug 2026 18:31:42 -0300 Subject: [PATCH] Remove financial data from version control --- .gitignore | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..87a4409 --- /dev/null +++ b/.gitignore @@ -0,0 +1,52 @@ +# Python bytecode and caches +__pycache__/ +*.py[cod] +*$py.class + +# Virtual environments +.venv/ +venv/ +env/ +ENV/ + +# Packaging and test artifacts +build/ +dist/ +*.egg-info/ +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ +.coverage +htmlcov/ + +# Jupyter +.ipynb_checkpoints/ + +# Environment files and local secrets +.env +.env.* +!.env.example + +# Editors and operating systems +.idea/ +.vscode/ +*.code-workspace +.DS_Store +Thumbs.db +Desktop.ini + +# Local logs and temporary files +*.log +*.tmp +*.temp +*.swp +*~ + +# Data Files +documents/ + +# Database exports (keep hand-written schemas and queries) +dump.sql +dump-*.sql +**/dump.sql +**/dump-*.sql