From 1dd5d8657ae07ca0ea08fbc292779b24d4feddb2 Mon Sep 17 00:00:00 2001 From: ddoebel Date: Wed, 15 Apr 2026 11:40:31 +0200 Subject: [PATCH] Ignore local Python and notebook metadata. Prevent accidental commits of virtual environments, bytecode caches, and notebook checkpoint artifacts. Made-with: Cursor --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d13a870 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.venv/ +__pycache__/ +*.py[cod] +*.pyo + +.ipynb_checkpoints/