44 lines
448 B
Plaintext
44 lines
448 B
Plaintext
# Environment - Local configs (NEVER commit these)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Build artifacts
|
|
target/
|
|
venv/
|
|
|
|
# Generated files
|
|
thumbnails/
|
|
*.asr.json
|
|
*.probe.json
|
|
test_asr.json
|
|
|
|
# Local output (machine learning results)
|
|
output/
|
|
*.pt
|
|
|
|
# Cache
|
|
.ruff_cache/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
.Spotlight-V100
|
|
.Trashes
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# SSH keys (NEVER commit)
|
|
id_*
|
|
!id_*.pub
|
|
|
|
# IDE and editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Documentation backups
|
|
docs_v1.0/
|