Files
proxmox/docs/SEARCH_GUIDE.md
defiQUG fbda1b4beb
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
docs: Ledger Live integration, contract deploy learnings, NEXT_STEPS updates
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands
- CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround
- CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check
- NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere
- MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates
- LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 15:46:57 -08:00

4.2 KiB
Raw Permalink Blame History

Documentation Search Guide

Last Updated: 2026-02-05
Document Version: 1.1
Status: Active Documentation


Overview

This guide explains how to search and navigate the documentation effectively.


Search Methods

File: MASTER_INDEX.md

Usage:

  1. Open MASTER_INDEX.md for the complete documentation index.
  2. Use your editor's search function (Ctrl+F / Cmd+F) to find keywords, topics, or document names.
  3. Follow links to navigate to documents. Documents are organized by category (0112) with priority ratings.

Alternative: Use docs/README.md for a shorter overview and category "See" links to each section's README.


Method 2: Full-Text Search (Command Line)

Using grep:

# Search for keyword in all markdown files
grep -r "keyword" docs/ --include="*.md"

# Case-insensitive search
grep -ri "keyword" docs/ --include="*.md"

# Search with context (3 lines before/after)
grep -ri "keyword" docs/ --include="*.md" -C 3

Using ripgrep (if available):

# Faster search with ripgrep
rg "keyword" docs/

# Search in specific file types
rg "keyword" -t markdown docs/

Most IDEs support:

  • Global search across all files
  • Search in specific directories
  • Regex pattern matching
  • File name search

Examples:

  • VS Code: Ctrl+Shift+F (Cmd+Shift+F on Mac)
  • Vim/Neovim: Use :grep or plugins
  • Emacs: Use M-x grep or helm-ag

Use the tag index in MASTER_INDEX.md (or search MASTER_INDEX.md for topics):

  • Find documents by topic tags
  • Tags include: proxmox, besu, cloudflare, vlan, vmid, rpc, ccip, etc.

Search Tips

Finding Configuration Information

Search for:

  • "configuration" - General configuration guides
  • "template" - Configuration templates
  • Specific service names (e.g., "besu", "cloudflare", "nginx")

Key Files:


Finding Troubleshooting Information

Search for:

  • "troubleshooting" - Troubleshooting guides
  • "error" - Error messages and solutions
  • "issue" - Known issues and fixes
  • Specific error messages

Key Files:


Finding Architecture Information

Search for:

  • "architecture" - Architecture documents
  • "network" - Network architecture
  • "vlan" - VLAN configuration
  • "vmid" - VMID allocation

Key Files:


Finding Quick References

Search for:

  • "quick reference" - Quick reference cards
  • "commands" - Command references
  • "network quick" - Network quick reference

Key Files:


Search Index Structure

The search index is organized by:

  1. Category - Documents grouped by category
  2. Alphabetical - All documents listed alphabetically
  3. Tags - Documents indexed by topic tags

Updating the Search Index

Automatic Update:

cd docs
./scripts/generate_search_index.sh

Manual Update:

  • Edit SEARCH_INDEX.md directly
  • Add new documents to appropriate categories
  • Update tags as needed


Last Updated: 2025-01-20
Review Cycle: Quarterly