first commit
This commit is contained in:
52
.gitignore
vendored
Normal file
52
.gitignore
vendored
Normal file
@ -0,0 +1,52 @@
|
||||
# .gitignore für Python-Projekt
|
||||
# Version: v1.1
|
||||
# Erstellt: 2025-07-25
|
||||
|
||||
# Bytecode & Caches
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# Virtuelle Umgebungen
|
||||
venv/
|
||||
.env/
|
||||
.virtualenv/
|
||||
.venv/
|
||||
|
||||
# IDE/Editor
|
||||
.vscode/
|
||||
.idea/
|
||||
|
||||
# Test- & Coverage-Dateien
|
||||
htmlcov/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.pytest_cache/
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
|
||||
# Build & Distribution
|
||||
build/
|
||||
dist/
|
||||
*.egg-info/
|
||||
.eggs/
|
||||
pip-wheel-metadata/
|
||||
|
||||
# Logs & Temp
|
||||
*.log
|
||||
*.tmp
|
||||
*.bak
|
||||
*.swp
|
||||
.DS_Store
|
||||
|
||||
# Umgebungsvariablen
|
||||
.env
|
||||
|
||||
# Sprachmodelle (TTS)
|
||||
tts_models/
|
||||
voice_models/
|
||||
*.pt
|
||||
*.onnx
|
||||
*.bin
|
||||
*.safetensors
|
||||
asset/
|
||||
Reference in New Issue
Block a user