f11f60d121
Añadidos patrones recursivos para Python (__pycache__, .pyc, .venv), Node (node_modules), y secrets (.env, .env.*) en cualquier subdirectorio. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
43 lines
492 B
Plaintext
43 lines
492 B
Plaintext
# SQLite index (regenerable con fn index) — SOLO en raiz
|
|
registry.db
|
|
registry.db-journal
|
|
registry.db-wal
|
|
|
|
# operations.db — datos vivos, cada app genera el suyo con fn ops init
|
|
**/operations.db
|
|
**/operations.db-journal
|
|
**/operations.db-wal
|
|
**/operations.db-shm
|
|
|
|
# Binario CLI
|
|
/fn
|
|
|
|
# Go
|
|
*.exe
|
|
*.test
|
|
*.out
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Secrets
|
|
**/.env
|
|
**/.env.*
|
|
|
|
# Python
|
|
**/__pycache__/
|
|
**/*.pyc
|
|
**/*.pyo
|
|
python/.venv/
|
|
|
|
# Node / pnpm
|
|
**/node_modules/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|