Browse Source

Remove financial data from version control

master
Yutsuo 2 weeks ago
parent
commit
60ecf7a2aa
  1. 52
      .gitignore

52
.gitignore vendored

@ -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
Loading…
Cancel
Save