From ec16bca84a023a3ac1e6e3398f9a61a93f5f3887 Mon Sep 17 00:00:00 2001 From: Samuel Zielke Date: Thu, 14 May 2026 00:05:35 +0200 Subject: [PATCH] Add GitIgnore --- .gitignore | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..21ec9e5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,64 @@ +# ========================================== +# macOS Systemdateien (Apple-spezifisch) +# ========================================== +.DS_Store +.AppleDouble +.LSOverride +Icon? +._* + +# Dateikommentare und Finder-Spezifika +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP/SMB shares +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items + +# ========================================== +# Python Umgebung & Caches +# ========================================== +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Virtuelle Umgebungen (Virtual Environments) +.venv/ +venv/ +ENV/ +env/ +# Falls du Poetry, Pipenv oder Anaconda nutzt: +.venv +.poetry/ +.pytest_cache/ +.mypy_cache/ + +# ========================================== +# Betrieb & App-Konfiguration (Sensible Daten) +# ========================================== +# Hier werden lokale Pfade zu Watch- und Dropbox-Ordnern gespeichert +.env +*.local +config.local.json + +# ========================================== +# Entwicklungs-Tools / IDEs +# ========================================== +# VS Code (falls genutzt) +.vscode/ +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +# PyCharm / IntelliJ IDEA +.idea/ +