forked from mrveiss/AutoBot-AI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
446 lines (387 loc) · 8.13 KB
/
.gitignore
File metadata and controls
446 lines (387 loc) · 8.13 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
# === PYTHON VIRTUAL ENVIRONMENT ===
# Virtual environment directories (created by setup_agent.sh)
AutoBot/
venv/
venvs/
bin/
lib/
!scripts/lib/
lib64/
include/
share/
pyvenv.cfg
# Python cache and compiled files
__pycache__/
*.py[cod]
*$py.class
*.pyc
*.pyo
# === NODE.JS AND NPM ===
# Node.js dependencies
node_modules/
autobot-vue/node_modules/
# Package manager lock files
# Note: package-lock.json should be committed to ensure consistent dependency versions
yarn.lock
pnpm-lock.yaml
# NPM cache
.npm/
.yarn/
# === BUILD OUTPUTS ===
# Frontend build outputs
dist/
build/
frontend/static/assets/
frontend/static/js/
static/assets/
static/js/
# Vue.js build outputs and cache
autobot-vue/dist/
autobot-vue/.vite/
# === APPLICATION DATA ===
# CRITICAL: Ignore data directory contents EXCEPT configuration files
# User data and runtime files should NEVER be committed to git
# Issue #515: Allow mcp_tools/ and knowledge/ configuration YAML files
data/*
!data/.gitkeep
!data/*/.gitkeep
!data/mcp_tools/
!data/knowledge/
# Analysis outputs - large JSON files and results
analysis/**/*.json
analysis/**/results.txt
analysis/**/output.txt
# === SECURITY & AUTHENTICATION ===
# SSH keys and certificates
*.pem
*.key
*.pub
*.ppk
*.p12
*.pfx
*.crt
*.cer
*.ca
*.ca-bundle
id_rsa*
id_dsa*
id_ecdsa*
id_ed25519*
authorized_keys
known_hosts
autobot_key*
ssh_host_*
# Password files
*.pass
*.password
*.passwd
credentials*
# Note: secrets.py and secrets_service.py are legitimate code files for secrets management
# Only exclude actual secret/password data files:
*.secrets
.secrets
secrets.txt
secrets.json
secrets.yaml
secrets.conf
secrets.key
**/secrets.key
.infra_encryption_key
# Authentication tokens
*.token
*token.txt
*token.json
*.auth
*auth.json
# === CONFIGURATION FILES ===
# Configuration files with sensitive data
config/*.yaml
config/settings.json
backend/config/settings.json
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# === LOG FILES ===
# All log files go in the unified logs/ directory
logs/
*.log
# Prevent root directory log files (they belong in logs/)
/backend*.log
/frontend*.log
/autobot*.log
# === DATABASE FILES ===
*.db
*.sqlite
*.sqlite3
# === CACHE DIRECTORIES ===
.cache/
.pip-cache/
.vite/
.turbo/
.nuxt/
.next/
.output/
# === TEMPORARY FILES ===
*.tmp
*.temp
.tmp/
.temp/
# === ROOT DIRECTORY PROTECTION ===
# Prevent files that should be in organized directories from polluting root
/test*.py # Test files belong in tests/
/TEST*.py # Test files belong in tests/
/*REPORT*.md # Reports belong in reports/
/*SUMMARY*.md # Summaries belong in reports/
/*GUIDE*.md # Guides belong in docs/ or reports/
/*ANALYSIS*.md # Analysis belong in analysis/ or reports/
/*.log # Log files belong in logs/
/*.log.* # Rotated log files belong in logs/
/*.bak # Backup files belong in backups/
/*.backup # Backup files belong in backups/
/*_backup.* # Backup files belong in backups/
/*.old # Old files belong in backups/
/*_old.* # Old files belong in backups/
/analysis_*.json # Analysis outputs belong in analysis/
/test_results_*.json # Test results belong in tests/results/
/profile_*.txt # Profiles belong in reports/performance/
/trace_*.log # Traces belong in logs/performance/
/benchmark_*.json # Benchmarks belong in tests/benchmarks/
# === OS GENERATED FILES ===
*:Zone.Identifier
*.Identifier
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# === EDITOR FILES ===
.vscode/
.idea/
*.swp
*.swo
*~
.backup
# === REDIS FILES ===
dump.rdb
*.rdb
redis.conf
# === MODEL FILES (AI/ML models, not code) ===
/models/
ollama/
*.ggml
*.bin
.huggingface/
# === RUNTIME FILES ===
*.pid
*.seed
*.pid.lock
*.sock
*.dmp
core.*
# === SETUP ARTIFACTS ===
setup.log
install.log
# === TESTING ARTIFACTS ===
coverage/
.nyc_output/
.pytest_cache/
htmlcov/
.coverage
.coverage.*
# === TEST GENERATED FILES ===
# All test-generated files must be in test_results folder
test_results/
tests/results/
tests/**/output/
tests/**/*.generated
tests/**/*.report
tests/**/*.result
tests/**/*.tmp
tests/**/*.log
# === REPORTS FOLDER ===
# All reports are generated content and should not be committed
reports/
# === REPORTS AND ANALYSIS (GENERATED) ===
# Generated reports that can be recreated
docs/reports/*.json
docs/reports/*-report.json
docs/reports/*-report.md
docs/reports/*analysis*.json
docs/reports/code-quality-*.json
docs/reports/security-*.json
docs/reports/performance-*.json
docs/reports/accessibility-*.json
docs/reports/console-*.json
docs/reports/frontend-*.json
docs/reports/backend-*.json
# Legacy report patterns (prevent in root)
/*_analysis_report.json
/*-analysis-report.json
/code_analysis_report.json
/architectural_analysis_report.json
/env_analysis_report.json
/frontend_analysis_report.json
/gpu_model_recommendations.json
/security_audit_results.json
# Legacy test and QA reports (prevent in root)
/TESTING_FRAMEWORK_SUMMARY.md
/TEST_RESULTS_SUMMARY.md
/FRONTEND_FIXES_COMPLETION_SUMMARY.md
/accessibility-fix-report.*
/console-cleanup-report.*
# === CHROME/CHROMADB ===
chromadb/
*.chromadb
# === BUILD TOOLS CACHE ===
.eslintcache
.prettiercache
*.tsbuildinfo
.vue-tsc-cache/
# === PACKAGE DISTRIBUTIONS ===
*.egg-info/
.installed.cfg
*.egg
MANIFEST
wheels/
*.whl
# === JUPYTER ===
.ipynb_checkpoints
# === DOCKER ===
.dockerignore
Dockerfile.*
# === MISC ===
.Python
develop-eggs/
downloads/
eggs/
.eggs/
parts/
sdist/
var/
share/python-wheels/
# noVNC vendor files
novnc/
# External test files
tests/external/
# Environment templates with example secrets
examples/env_template.txt
data/file_manager_root/Rag_optimization_methods.md
# Security audit files with git commit hashes
reports/**/security_audit_*.json
# === EXTERNAL GIT REPOSITORIES ===
# External projects/submodules that are independent repositories
code-index-mcp/
mcp-github-project-manager/
mcp-tools/context7/
mcp-tools/mcp-structured-thinking/
mcp-tools/mcp-task-manager-server/
# Large log and analysis files
*.log.bak
reports/archives/**/duplicate_analysis_results*.json
reports/archives/**/*.log.bak
# Files over 50MB
reports/archives/archive_*/other/*.log.bak
reports/archives/archive_*/analysis_reports/duplicate_analysis_results*.json
# Logs and backups - should never be in repo
*.log
*.log.*
*.bak
*.backup
*.old
*.tmp
*.temp
# Archive directories with logs/backups
reports/archives/
logs/
backups/
temp/
tmp/
# Large files
*.zip
*.tar
*.tar.gz
*.tgz
*.rar
*.7z
# TLS Certificates (generated by scripts/security/generate-tls-certificates.sh)
certs/
*.pem
*.csr
*.key
*.crt
config/service-keys/
# === MCP DIRECTORY EXCLUSIONS ===
# Prevent MCP binaries and archives from being tracked
.mcp/github-mcp-server
.mcp/github-mcp-server*
.mcp/*.tar.gz
.mcp/*.zip
.mcp/node_modules/
# === IDE DIRECTORIES (STRENGTHEN EXCLUSIONS) ===
# Ensure .vscode directories are excluded at all levels
/.vscode/
**/.vscode/
.vscode/*
*/.vscode/
# === BACKUP DIRECTORIES THAT KEEP APPEARING ===
# Specific backup directories from past debugging sessions
.accessibility-fix-backups/
.console-cleanup-backups/
.sidebar-backups/
backup/
backups/
# === ADDITIONAL CLOUD PROVIDER CREDENTIALS ===
# AWS credentials
.aws/credentials
.aws/config
# Google Cloud credentials
gcloud-credentials.json
*-gcloud-key.json
service-account*.json
# Azure credentials
.azure/credentials
# === DATABASE BACKUPS ===
# Database backup files
*.sql.gz
*.sql.bz2
*.dump
*.backup.sql
database-backup-*
# === KUBERNETES SECRETS ===
secrets/
*secret.yaml
*secret.yml
# === TERRAFORM STATE ===
*.tfstate
*.tfstate.*
.terraform/
# === ANSIBLE VAULT ===
vault.yml
vault.yaml
*-vault.yml
# Issue #700: Vault password files
.vault_pass
.vault_password
*vault_pass*
*vault_password*
ansible/inventory/group_vars/vault.yml
.claude/agents-optimized/
.claude/.optimization_cache.json
# Git worktrees for isolated development
.worktrees/
# Redis admin credentials (Issue #725)
certs/.redis-admin-credentials
slm-server/.env
dev_creds_backup
docs/.obsidian/app.json
docs/.obsidian/appearance.json
docs/.obsidian/core-plugins.json
.obsidian/app.json
.obsidian/appearance.json
.obsidian/core-plugins.json
# Git worktrees
.worktrees/