-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
139 lines (114 loc) · 2.14 KB
/
.gitignore
File metadata and controls
139 lines (114 loc) · 2.14 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
############################################
# 🔐 Secrets & Credentials (NEVER COMMIT)
############################################
# Generic secrets
*.key
*.pem
*.crt
*.csr
*.p12
*.pfx
*.der
*.jks
# SSH
.ssh/
id_rsa
id_ed25519
id_ecdsa
*.pub
# API keys / tokens
.env
.env.*
*.env
secrets.*
credentials.*
auth.*
token.*
apikey*
# Ansible / automation secrets
vault.yml
vault.yaml
*.vault
group_vars/*/vault.yml
host_vars/*/vault.yml
############################################
# 🧠 Configs that should stay local
############################################
# Network device backups / exports
*.backup
*.bak
*.cfg
*.conf.local
*.running
*.startup
# Router / switch configs
router-configs/
switch-configs/private/
firewall-rules/private/
# WiFi configs
wpa_supplicant.conf
hostapd.conf
dnsmasq.conf
############################################
# 🐧 OS / Editor / Tooling Noise
############################################
# Linux / macOS
.DS_Store
.Trash-*
*~
.nfs*
# Windows
Thumbs.db
Desktop.ini
# Editors / IDEs
.vscode/
.idea/
*.swp
*.swo
*.tmp
############################################
# 🐍 Python / Automation
############################################
__pycache__/
*.py[cod]
.venv/
venv/
env/
pip-wheel-metadata/
############################################
# 🐳 Docker / Containers
############################################
# Local-only overrides
docker-compose.override.yml
.env.docker
# Volumes / runtime data
docker-data/
volumes/
containers/
############################################
# 🧪 Logs & Runtime Output
############################################
*.log
logs/
tmp/
cache/
############################################
# 📊 Generated Artifacts
############################################
# Generated diagrams / exports (keep source, not output)
*.drawio.bkp
*.png
*.jpg
*.svg
*.pdf
# Uncomment if you WANT rendered diagrams tracked
# !docs/diagrams/*.png
# !docs/diagrams/*.svg
############################################
# 🛑 Explicit Allowlist Examples
############################################
# Example sanitized configs you DO want tracked
!configs/examples/
!configs/examples/**
!docs/**
!diagrams/source/**