Add .gitignore to keep secrets out of repo (values live in Bitwarden)
This commit is contained in:
parent
8f67e50640
commit
68d64754a0
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