-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.gitignore
More file actions
217 lines (181 loc) · 4.54 KB
/
.gitignore
File metadata and controls
217 lines (181 loc) · 4.54 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
# Operating System
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# package-lock.json - REMOVED: Required for Docker builds with npm ci
.pnpm-debug.log*
# Build outputs
dist/
build/
*.js.map
# Frontend - Generated documentation (synced from /docs during build)
services/web-ui/frontend/public/docs/**/*.md
services/web-ui/frontend/public/docs/architecture/
services/web-ui/frontend/public/docs/api/
services/web-ui/frontend/public/docs/guides/
# Keep UI-specific assets
!services/web-ui/frontend/public/docs/pic/
# Frontend - Generated manifest and types (allow stub for CI TypeScript check)
services/web-ui/frontend/src/generated/*
!services/web-ui/frontend/src/generated/docs-manifest.json
# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.venv/
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.project
.classpath
.settings/
# Logs
logs/
*.log
audit.log
production_install.log
final_production_install.log
dry_run*.log
install*.log
# Installation state (idempotency tracking)
.install-state.lock
# Docker
docker-compose.override.yml
# Backup files
*.bak
*.backup
*__*
backup/
Backup/
.version-sweep-backup-*/
# PII Modernization - Never sync to repo
vigil-guard-pii-rollback-*/
services/presidio-pii-api/models/*.whl
services/presidio-pii-api/models/*.tar.gz
# Temporary files
*.tmp
*.temp
.cache/
.vite/
# Testing
coverage/
.nyc_output/
# Database
*.db
*.sqlite
*.sqlite3
# Vigil Guard Data Directory (persistent volumes)
vigil_data/
# Webhook authentication token (runtime secret, not for repository)
services/workflow/config/.webhook-token
# Bootstrap token files (runtime secrets, not for repository)
services/workflow/config/.bootstrap-token
services/workflow/config/.bootstrap-token-meta.json
# LLM Models (must be downloaded separately)
# Keep the directory structure but ignore model files
Llama-Prompt-Guard-2-86M/*
!Llama-Prompt-Guard-2-86M/DOWNLOAD_INSTRUCTIONS.md
!Llama-Prompt-Guard-2-86M/.gitkeep
!Llama-Prompt-Guard-2-86M/download-here.sh
vigil-llm-models/
# Claude Code artifacts
.claude/
**/CLAUDE.md
CLAUDE.md
CHANGELOG.md
# Claude Code UI state (runtime-generated, not for repository)
.claude-code/
# Note: Entire .claude-code/ directory is IDE-specific and should not be synced
# Codex tooling (local-only)
.codex/
bin
bin/vg-orchestrate
# Codex agent system (local-only, do not sync)
AGENTS.md
codex-protocols.md
codex-agents/
codex-state/
# Project management and scripts (not for repository)
IMPLEMENTATION_TODO.md
UX_TODO.md
CODEX_MIGRACA.md
MONITORING_TODO.md
DASHBOARD_UX_OPTIMIZATION.md
MONITORING+UX_TODO.md
update_logo.sh
logo_backup_*/
vigil_logo_new.png
services/workflow/workflows/backup/
services/workflow/config/version_history.json
services/workflow/config/*.bak
TODO.md
mustfix.md
TEST_ANALYSIS.md
# Claude Code wrapper scripts (local-only tmux integration)
scripts/claude-code-wrapper.sh
scripts/tmux-agent-status.sh
# Roadmap directory (internal planning, not for repository)
Roadmap/
# Browser Plugin - now part of the project
# plugin/
# Study documents (not for repository)
clickhouse_retention_study.md
# Operational/monitoring documentation (user-specific, not product docs)
docs/PII_MONITORING_QUERIES.md
docs/TMUX_STATUS_BAR.md
# Grafana datasource with secrets (generated from .example by install.sh)
services/monitoring/grafana/provisioning/datasources/clickhouse.yml
# Browser extension build artifacts
plugin/Chrome.crx
plugin/Chrome.pem
audit-logs/
Roadmap/
# Development/debug scripts (moved to ../Vigil-misc/)
debug_*.js
debug_*.cjs
debug_*.mjs
fix_*.js
fix_*.cjs
normalize_node.js
test_*.sh
# Auto-generated test files (moved to ../Vigil-misc/)
**/tests/**/auto-*.test.js
**/tests/**/fixtures/auto-*.json
# Branch analysis results (generated by branch-analysis.js)
services/workflow/tests/branch-analysis-results.json
# Temporary documentation (moved to ../Vigil-misc/)
FIX_*.md
DEBUG_*.md
VERIFICATION_*.md
# Test summaries (temporary analysis)
TEST_SUMMARY.md
PII_SCORE_REGRESSION_ANALYSIS.md
# Archive - v1.8 legacy files
old_1.8_files/
# Codex agent system (local-only, do not sync)
AGENTS.md
codex-protocols.md
codex-agents/
codex-state/
# Semantic Service - E5 Migration (Phase 3-4)
# Models (downloaded via scripts, too large for git)
services/semantic-service/models/
!services/semantic-service/models/.gitkeep
# Embeddings data (generated from source datasets)
services/semantic-service/data/*.jsonl
services/semantic-service/data/_backup_*/
# Keep source pattern files from external datasets only as needed