# Git .git .gitignore # Python __pycache__ *.py[cod] *$py.class *.so .Python .venv venv ENV env .pytest_cache .coverage htmlcov *.egg-info dist build # Node node_modules npm-debug.log* yarn-debug.log* yarn-error.log* # IDE .idea .vscode *.swp *.swo *~ # Docker Dockerfile* docker-compose*.yml .docker # Environment files (but keep .env.example) .env .env.local .env.*.local # Documentation *.md docs/ # Test files tests/ __tests__/ *.test.* *.spec.* # Build outputs dist/ build/ # Misc .DS_Store Thumbs.db *.log