Add .gitignore to keep secrets out of repo (values live in Bitwarden)
This commit is contained in:
parent
b301ce4400
commit
9651a191a8
1 changed files with 21 additions and 0 deletions
21
.gitignore
vendored
Normal file
21
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Secrets — real values live in Bitwarden, never committed.
|
||||
# Reference files (key-name tables) are fine; value-bearing files are not.
|
||||
|
||||
# Credential value files
|
||||
credentials.env
|
||||
*.creds
|
||||
*.secret
|
||||
*.secrets
|
||||
secrets.*
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# Loose password / key files
|
||||
pw.txt
|
||||
password*.txt
|
||||
*.pem
|
||||
*.key
|
||||
id_rsa
|
||||
id_ed25519
|
||||
*token*.txt
|
||||
Loading…
Add table
Reference in a new issue