Files
CameraSave/.gitignore
2025-10-02 09:19:32 +02:00

43 lines
478 B
Plaintext

# Projekt-Sachen
videospeicher/
# === Docker ===
.env
# === Python Bytecode ===
__pycache__/
*.py[cod]
*$py.class
# === Virtuelle Umgebungen ===
.venv/
env/
venv/
# === Build & Distribution ===
build/
dist/
*.egg-info/
.eggs/
# === Logs & temporäre Dateien ===
*.log
*.tmp
*.swp
*.swo
# === IDE / Editor Dateien ===
.vscode/
.idea/
*.iml
# === macOS-spezifisch ===
.DS_Store
.AppleDouble
.LSOverride
# === Python Tools ===
.mypy_cache/
.pytest_cache/
.coverage
htmlcov/