-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
200 lines (167 loc) · 6.5 KB
/
Copy path.gitignore
File metadata and controls
200 lines (167 loc) · 6.5 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
# ═══════════════════════════════════════════════════════════════════════
# AltFlex AEGIS v3.0 — .gitignore
# Comprehensive exclusions for pnpm monorepo, TypeScript, Next.js,
# Foundry, Python/Jupyter, Docker, Terraform, and all dev tooling
# ═══════════════════════════════════════════════════════════════════════
# ── Dependencies ──────────────────────────────────────────────────────
node_modules/
.pnpm-store/
.pnpm-debug.log
# ── Build Outputs ─────────────────────────────────────────────────────
dist/
build/
.next/
out/
*.tsbuildinfo
*.js.map
*.d.ts.map
# ── TypeScript ────────────────────────────────────────────────────────
*.tsbuildinfo
tsconfig.tsbuildinfo
# ── Environment & Secrets ─────────────────────────────────────────────
# Root-level env files
.env
.env.local
.env.*.local
.env.development
.env.staging
.env.production
.env.test
# Package-level env files (belt-and-suspenders)
apps/**/.env
apps/**/.env.*
packages/**/.env
packages/**/.env.*
infrastructure/**/.env
infrastructure/**/.env.*
# ── IDE & Editor ──────────────────────────────────────────────────────
.idea/
*.swp
*.swo
*~
.project
.classpath
.settings/
# VS Code — keep workspace settings, ignore personal files
# .vscode/ is committed for shared workspace config
.vscode/*.code-workspace
# ── Operating System ──────────────────────────────────────────────────
.DS_Store
Thumbs.db
desktop.ini
ehthumbs.db
ehthumbs_vista.db
# ── Testing & Coverage ───────────────────────────────────────────────
coverage/
.nyc_output/
*.lcov
test-results/
playwright-report/
blob-report/
deploy_test/
deploy_test_2/
deploy_test*/
# ── Foundry / Forge (Smart Contract Tooling) ─────────────────────────
# Foundry build artifacts
cache/
broadcast/
out/
# Foundry-specific
packages/forensic-engine/cache/
packages/forensic-engine/out/
packages/forensic-engine/broadcast/
# Forge script dry-run artifacts
dry-run/
# ── Python / Jupyter (research/) ─────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.pyc
*.pyo
.ipynb_checkpoints/
*.egg-info/
*.egg
.eggs/
.venv/
venv/
env/
.python-version
# Jupyter kernel specs
.local/share/jupyter/
# Python virtual environments in research directory
research/.venv/
research/venv/
# ── Data Files (should use Git LFS for large files) ──────────────────
# Prevent accidental commits of large datasets
*.csv.gz
*.parquet
*.arrow
*.feather
*.h5
*.hdf5
*.pkl
*.pickle
# Model weights — MUST use Git LFS
*.pt
*.pth
*.onnx
*.safetensors
*.bin
!package.json
# ── Turbo Cache ───────────────────────────────────────────────────────
.turbo/
# ── Docker ────────────────────────────────────────────────────────────
# Docker volumes and data (local dev)
infrastructure/docker/volumes/
infrastructure/docker/data/
docker-compose.override.yml
# ── Terraform ─────────────────────────────────────────────────────────
infrastructure/terraform/**/.terraform/
infrastructure/terraform/**/*.tfstate
infrastructure/terraform/**/*.tfstate.backup
infrastructure/terraform/**/*.tfvars
infrastructure/terraform/**/crash.log
infrastructure/terraform/**/.terraform.lock.hcl
# ── Debug Logs ────────────────────────────────────────────────────────
*.log
npm-debug.log*
pnpm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# ── AI Agent Configuration & IDEs ───────────────────────────────────────
# (Currently tracking these directories to preserve Agentic Skills)
pr_body.txt
# ── Next.js ───────────────────────────────────────────────────────────
.next/
.vercel
.output/
.cache/
# ── Storybook ─────────────────────────────────────────────────────────
storybook-static/
# ── Misc ──────────────────────────────────────────────────────────────
.eslintcache
.stylelintcache
*.bak
*.tmp
*.temp
# ── Docs Phase Development ───────────────────────────────────────────────────────
pre_phase*.js
fix*.js
check*.js
*.txt
# Test fixtures must stay tracked — the suite fails on a clean checkout without
# them. Negations must come after the *.txt rule above to take effect.
!**/__tests__/fixtures/**/*.txt
!**/tests/fixtures/**/*.txt
CODE_REVIEW_PHASE3.md
CODE_REVIEW_PHASE4.md
CODE_REVIEW_PHASE5.md
CODE_REVIEW_PHASE6.md
docs/PHASE_2_DATA_PIPELINES_ETL.md
docs/PHASE_3_AI_SAFETY_SCANNER.md
docs/PHASE_4_FRONTEND_IMPLEMENTATION.md
docs/PHASE_5_DEEP_EVM_INTEGRATION.md
docs/PHASE_6_PRODUCTION_HARDENING.md
# ── P1 ARCH Development ─────────
p1_arch_006_pr.txt