-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
38 lines (33 loc) · 1.42 KB
/
Copy path.gitignore
File metadata and controls
38 lines (33 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# ─────────────────────────────────────────────────────────────────────
# SECRETS — never commit plaintext. See SECRETS.md.
# ─────────────────────────────────────────────────────────────────────
# age/sops key material — must never leave your machine
*.key
*.agekey
age.key
age-keys.txt
keys.txt
# Anything decrypted to disk (temp files from scripts/secrets.py, or a
# manual `sops -d > somefile`)
*.decrypted
*.plain
secrets/*.decrypted
secrets/*.plain
secrets/*.env
*.env
!*.env.example
# ...but the SOPS-ENCRYPTED vaults ARE meant to be committed:
!secrets/*.sops.yaml
!secrets/*.sops.yml
# SSH keys, just in case one ever ends up in here by accident
*.pem
id_ed25519*
id_rsa*
# ─────────────────────────────────────────────────────────────────────
# Ordinary junk
# ─────────────────────────────────────────────────────────────────────
__pycache__/
*.pyc
.DS_Store
.idea/
.vscode/