Add GitIgnore

main
Samuel Zielke 4 weeks ago
parent 302e33b2a0
commit ec16bca84a

64
.gitignore vendored

@ -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/
Loading…
Cancel
Save

Powered by TurnKey Linux.