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