# Git .git .gitignore # Build artifacts and binaries bin/ *.exe *.exe~ *.dll *.so *.dylib *.test *.out # Go workspace file go.work go.work.sum # IDE and editor files .vscode/ .idea/ *.swp *.swo *~ # Operating system files .DS_Store Thumbs.db # Docker files Dockerfile .dockerignore # Documentation README.md *.md # Test files (include source but exclude test binaries) *.test # Coverage files *.cover *.coverprofile coverage.txt coverage.html # Vendor directory (if using modules, this should be excluded) vendor/ # Environment files .env .env.local .env.*.local # Temporary files tmp/ temp/ *.tmp # Log files *.log