78 lines
742 B
Plaintext
78 lines
742 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
.venv/
|
|
env/
|
|
ENV/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
htmlcov/
|
|
.coverage
|
|
*.log
|
|
|
|
# Node.js / Frontend
|
|
node_modules/
|
|
dist/
|
|
.next/
|
|
out/
|
|
.nuxt/
|
|
*.local
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.production
|
|
*.env
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Docker / Podman
|
|
*.tar
|
|
*.tar.gz
|
|
|
|
# Data / Models (não versionar modelos grandes)
|
|
*.bin
|
|
*.pt
|
|
*.onnx
|
|
voice_db/
|
|
speechbrain_cache/
|
|
uploads/
|
|
media/
|
|
|
|
# Audio files (storage)
|
|
storage/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Tests
|
|
.coverage
|
|
htmlcov/
|
|
.pytest_cache/
|
|
|
|
# Alembic (manter só as migrations, não o cache)
|
|
__pycache__/
|