# Git .git .gitignore .gitattributes # IDE .vscode .idea *.swp *.swo *~ .DS_Store # Python __pycache__ *.pyc *.pyo *.pyd .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST .pytest_cache/ .coverage htmlcov/ venv/ env/ ENV/ # Environment .env .env.local .env.*.local # Logs logs/ *.log *.log.* cron.log file_watch.log daily_run.log # Data (keep cached API responses) data/cache/ data/*.csv data/*.xlsx data/*.xls output/ *.db *.sqlite # Temporary *.tmp .tmp/ temp/ *.bak *.swp # OS Thumbs.db .DS_Store .AppleDouble .LSOverride # Docker docker-compose.override.yml .dockerignore # Test .pytest_cache .tox/ nosetests.xml coverage.xml *.cover .hypothesis/ # Documentation docs/_build/ site/