# バージョン管理システム関連 .git/ .gitignore # キャッシュファイル __pycache__/ .pytest_cache/ **/__pycache__/** *.pyc # ビルド・配布関連 build/ dist/ *.egg-info/ # 一時ファイル・出力 output/ output.md test_output/ .SourceSageAssets/ .SourceSageAssetsDemo/ # アセット *.png *.svg *.jpg *.jepg assets/ # その他 LICENSE example/ package-lock.json .DS_Store # 特定のディレクトリを除外 tests/temp/ docs/drafts/ # パターンの例外(除外対象から除外) !docs/important.md !.github/workflows/ repository_summary.md # Terraform関連 .terraform *.terraform.lock.hcl *.backup *.tfstate # Python仮想環境 venv .venv