From d7e8caa3fc9e37d52cb78eefcf6e507b81897a84 Mon Sep 17 00:00:00 2001 From: Kim Date: Fri, 13 Feb 2026 15:23:19 +0100 Subject: [PATCH] add .git ignore --- .gitignore | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b52148f --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +# Python-spezifisch +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python + +# Virtuelle Umgebungen +.env/ +env/ +venv/ +ENV/ + +# Build-Artefakte & Metadaten +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Flask/Runtime +instance/ +.webassets-cache + +# Systemdateien +.DS_Store +Thumbs.db + +# IDEs +.vscode/ +.idea/