From 87e7ea770f0aaaf210752d2ecc099df536d77f2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Eduardo=20Garc=C3=ADa=20M=C3=A1rquez?= Date: Sun, 11 Jan 2026 19:48:58 -0500 Subject: [PATCH] chore: Add .gitignore Exclude development screenshots, Python cache, IDE files, and old script versions from version control. Co-Authored-By: Claude Opus 4.5 --- .gitignore | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cba35c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,26 @@ +# Screenshots de desarrollo +*.png +!images/*.png + +# Backups +*.bak +*.backup +*~ + +# Python +__pycache__/ +*.pyc +*.pyo + +# IDE +.idea/ +.vscode/ +*.swp + +# OS +.DS_Store +Thumbs.db + +# Versiones antiguas de scripts +generate_assets.py +generate_assets_v2.py