-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
50 lines (48 loc) · 694 Bytes
/
Copy path.gitignore
File metadata and controls
50 lines (48 loc) · 694 Bytes
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
39
40
41
42
43
44
45
46
47
48
49
50
# macOS
.DS_Store
# VSCode
.vs
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# --- SecKit: keep secrets out of git and AI-agent context ---
# Env files
.env
.env.*
!.env.example
!.env.sample
!.env.template
# Private keys / certificates
*.pem
*.key
*.p12
*.pfx
*.keystore
*.jks
id_rsa
id_rsa.*
id_ed25519
id_ed25519.*
*.ppk
# Credential / auth files
.npmrc
.netrc
.pgpass
.htpasswd
auth.json
**/credentials*
**/service-account*.json
**/*serviceaccount*.json
.aws/credentials
.gcp/*.json
# Infra state (often embeds secrets)
*.tfvars
*.tfstate
*.tfstate.*
# Generic secret dumps
secrets.*
**/secrets/**
# --- end SecKit ---