From 2ac105d6e163b008aa3a3e24a0131f2e6f97c252 Mon Sep 17 00:00:00 2001 From: Gary Ritchie Date: Fri, 10 Apr 2026 12:27:30 -0400 Subject: [PATCH] Cleanup; ignore generated files --- .gitignore | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..259d07c --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# --- Python Artifacts --- +__pycache__/ +*.py[cod] +*$py.class +venv/ +.env + +# --- Blender Specific --- +# Ignore the generated extension build output directory +out/ +*.zip + +# Ignore Blender backup files (e.g., .blend1, .blend2) +*.blend[0-9] +# Ignore temporary autosave files +*.blend@ + +# --- OS Specific --- +.DS_Store +Thumbs.db +Desktop.ini + +# --- IDE/Editor Specific --- +.vscode/ +.idea/ +*.swp +*.swo