148 lines
1.5 KiB
Plaintext
148 lines
1.5 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
pip-wheel-metadata/
|
|
*.pyc
|
|
|
|
# Virtual Environments
|
|
.venv/
|
|
.virtualenv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Testing & Coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.tox/
|
|
.hypothesis/
|
|
coverage.xml
|
|
*.cover
|
|
.cache
|
|
nosetests.xml
|
|
coverage/
|
|
|
|
# Type Checking & Linting
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
.ruff_cache/
|
|
.pytype/
|
|
|
|
# IDE & Editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.pydevproject
|
|
.settings/
|
|
*.sublime-*
|
|
|
|
# Project Specific Exclusions
|
|
data/temp/
|
|
data/cache/
|
|
data/chromadb/
|
|
*.log
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Third-party Libraries & Large Directories
|
|
leann/
|
|
.leann/
|
|
.playwright-mcp/
|
|
litellm/
|
|
|
|
# Test Outputs & Transcriptions
|
|
test_output/
|
|
transcriptions/
|
|
*.wav
|
|
*.mp3
|
|
*.mp4
|
|
*.m4a
|
|
audio_cache/
|
|
|
|
# uv Package Manager
|
|
uv.lock
|
|
.python-version
|
|
|
|
# OS Files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
dev-debug.log
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Node/Frontend (if added later)
|
|
node_modules/
|
|
dist/
|
|
dist-ssr/
|
|
*.local
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
instance/
|
|
|
|
# Temporary Files
|
|
*.tmp
|
|
*.temp
|
|
tmp/
|
|
temp/
|
|
|
|
# Backups
|
|
*.bak
|
|
*.backup
|
|
*~
|
|
*.orig
|
|
|
|
# Claude Code Specific (keep these)
|
|
# .claude/
|
|
# .taskmaster/
|
|
|
|
# Git Worktrees (don't commit references)
|
|
../trax-tests/
|
|
../trax-docs/
|
|
../trax-db/
|
|
../trax-api/
|
|
subprojects/
|