Files
fn_registry/.gitignore
T
egutierrez d7f2c00d7b feat: externalize apps/analysis to Gitea repos, add analysis table
- Migration 007: repo_url on apps table + analysis table with FTS5
- Analysis struct, parser, CRUD, validation, hash computation
- Selective purge: remote-only apps/analysis preserved across fn index
- CLI: fn app list/clone/pull, fn analysis list/clone/pull
- search/show/list now include analysis results
- Apps removed from git tracking (content lives in Gitea repos)
- .gitkeep for apps/ and analysis/ dirs
- Bash functions: jupyter analysis pipeline, shell utilities
- Browser domain: CDP functions moved from infra to browser

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 04:23:51 +02:00

50 lines
656 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/
# Externalized apps and analysis (each is its own Gitea repo)
apps/*/
analysis/*/
# Node / pnpm
**/node_modules/
# Sources — repos externos clonados (solo se versiona el manifest)
sources/*/
# OS
.DS_Store
Thumbs.db