Files
fn_registry/.gitignore
T
egutierrez f11f60d121 chore: gitignore completo — __pycache__, .env, venv, node_modules
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>
2026-03-28 23:25:55 +01:00

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