# aere-docs .gitignore # # This repository is PUBLIC and contains documentation only. It holds no keys, # no node data and no infrastructure detail by design. These rules exist so that # an accidental `git add -A` cannot quietly change that. # # Added 2026-07-20, after a review found this repository had no .gitignore at # all. Nothing was leaking here; this is preventive. # ---- Secret-bearing file types. Never commit any of these. ---- .env .env.* !.env.example *.pem *.key *.p12 *.pfx *.keystore id_rsa* id_ed25519* *.mnemonic secrets.json nodekey nodekey.pub # ---- Compiled Python (a .pyc in a sibling repository leaked a build path) ---- __pycache__/ *.pyc *.pyo *.pyd # ---- Doc tooling build output ---- node_modules/ _site/ .cache/ *.pdf.tmp # ---- Editor / OS noise ---- .DS_Store Thumbs.db .idea/ .vscode/