/ .gitignore
.gitignore
1 # Rust 2 /target 3 **/*.rs.bk 4 5 # Editors 6 *.swp 7 *.swo 8 *~ 9 .vscode/ 10 .idea/ 11 *.iml 12 13 # Environment / secrets 14 .env 15 .env.* 16 !.env.example 17 !.env.staging.example 18 *.pem 19 *.key 20 *.p12 21 *.pfx 22 23 # OS 24 .DS_Store 25 Thumbs.db 26 27 # Ansible 28 *.retry 29 30 # Logs 31 *.log 32 33 # Python 34 __pycache__/ 35 *.pyc 36 .venv/ 37 venv/ 38 39 # Containers 40 *.tar.gz 41 42 # Node / NPM 43 node_modules/ 44 package-lock.json 45 46 # ── Radicle versioning exclusions ────────────────────── 47 48 # LLM instructions (NEVER version — not source code) 49 _bmad/ 50 .claude/ 51 CLAUDE.md 52 53 # BMAD output — versioned on GitHub 54 # _bmad-output/ contains planning + implementation artifacts 55 56 # Commercial code (token-gated, separate repo — Epic 36-1) 57 eu-17711-smart/ 58 59 # Infrastructure / pipelines (ops, not versioned publicly) 60 org-17711-mesh/infra/ 61 .github/ 62 .woodpecker/