| 1 |
target/ |
| 2 |
Cargo.lock.bak |
| 3 |
*.swp |
| 4 |
.DS_Store |
| 5 |
CLAUDE.md |
| 6 |
CLAUDE.local.md |
| 7 |
.claude/ |
| 8 |
|
| 9 |
# Secrets and credentials. The baseline every repo under ~/Code carries, kept |
| 10 |
# identical so no repo is the one that forgot. Suffix-matched rather than |
| 11 |
# `*.env`, which would also catch committed environment files that hold no |
| 12 |
# secrets (sweep systemd/sweep.env). `.env.example` is a tracked template and |
| 13 |
# is negated back in. |
| 14 |
.env |
| 15 |
.env.* |
| 16 |
!.env.example |
| 17 |
*.pem |
| 18 |
*.key |
| 19 |
*.p8 |
| 20 |
*.p12 |
| 21 |
*.pfx |
| 22 |
credentials.json |
| 23 |
|