From 2f53d229433289ce049106ec1e6967fe57617739 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 26 Feb 2026 21:39:57 -0600 Subject: [PATCH] chore: add .gitignore for Python and session files --- .gitignore | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..684e707 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +*.egg-info/ +dist/ +build/ + +# Environment +.env +.env.* +.venv/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Session notes (local only) +session.md +*.session.md + +# Logs +*.log +logs/