# Git files .git .gitignore # Python cache __pycache__ *.pyc *.pyo *.pyd .Python *.so # Virtual environments venv/ env/ ENV/ # IDE files .vscode/ .idea/ *.swp *.swo # OS files .DS_Store Thumbs.db # Logs *.log # Docker files (except Dockerfile) docker-compose*.yml .dockerignore # Documentation docs/ *.md # Test files test/ tests/ *_test.py # Temporary files *.tmp *.temp