-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
214 lines (166 loc) · 3.77 KB
/
.gitignore
File metadata and controls
214 lines (166 loc) · 3.77 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
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
# Manus AI debug data
.manus/
# Manus raw output (cleaned version is in landing/)
Protocol Guide Landing Page/
# LA County FD Secret Sauce source PDFs (public DHS material, ingested to Supabase)
LA County FD Secret Sauce/
# Claude Code agents/skills (not project code)
Agents:Skills/
# Environment files - NEVER commit secrets
.env
.env.*
!.env.example
# dependencies
node_modules/
package-lock.json
# Expo
.expo/
dist/
web-build/
expo-env.d.ts
# Native
.kotlin/
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
# Metro
.metro-health-check*
# debug
npm-debug.*
yarn-debug.*
yarn-error.*
# macOS
.DS_Store
*.pem
# local env files (covered by .env.* above)
# typescript
*.tsbuildinfo
app-example
# generated native folders
/ios
/android
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Logs
logs
*.log
# OS
Thumbs.db
# Build files
*.tgz
*.tar.gz
.cache/
# Netlify local state
.netlify/
# Internal planning docs - keep out of production repo
docs/accessibility/
docs/migration/
docs/fixes/
docs/audits/
docs/ai/
docs/protocols/
docs/design/
docs/project/
docs/unknown-agencies-findings.md
# Sensitive business docs
research/partnerships/
# Development artifacts
diagrams/
assets/file.svg
# Scripts artifacts - PDFs, extracted text, protocol folders
scripts/*.pdf
scripts/*.txt
scripts/riverside_protocols/
scripts/san_diego_protocols/
scripts/orange_county_protocols.md
scripts/san_joaquin_protocols.md
# Abandoned implementations
rust-server/
# Claude Code / AI agent local config (not project code)
.agent/
.claude/
.agents/
.codex/
.cursor/
.factory/
.gemini/
.github/skills/
.opencode/
.pi/
# Landing page build artifacts
landing/node_modules/
landing/dist/
# Supabase local config
.supabase/
# Test coverage reports
/coverage/
# Playwright Test Results
test-results/
playwright-report/
playwright/.cache/
# Visual Regression Test Screenshots (DO commit baseline screenshots)
# Only ignore test artifacts, not the baseline screenshots in __screenshots__
test-results/**/*-actual.png
test-results/**/*-expected.png
test-results/**/*-diff.png
# Build analysis artifacts
dist-analyze/
run-migration.js
supabase/.temp/
# Protocol source data (PDFs ingested into Supabase, not needed at runtime)
data/
# Archived one-time import scripts and outputs
scripts/archive/
# Test fixtures (large PDFs)
test/data/
# Dead code / artifacts (public repo cleanup)
output/
lighthouse-report.json
*.backup
get-logs.js
# Google Play Store credentials (EAS submit)
google-service-account.json
# Railway config (deployment managed via CI secrets, not config files)
.railway
# railway.json - now tracked for deployment config
# One-off migration scripts (should be in drizzle/migrations/ if needed)
fix-*.sql
# Research / internal planning docs
research/google-cloud-key.json
# Monitoring system generated reports
scripts/reports/
scripts/cache/pdfs/
*.png
# Store listing screenshots and graphics are committed assets, not build
# artifacts — override the global *.png rule above so they survive commits.
!assets/store/**/*.png
!assets/images/*.png
var/folders/**
# OCR training data
*.traineddata
# Build artifacts
coverage-output.txt
lighthouse-results.json
# Test archives
test-scripts-archive/
test-screenshots/
# Temp directories
tmp/
# Generated sitemaps (rebuilt during deploy)
public/sitemap*.xml
# Test query backups
scripts/*-backup.json
# Test result artifacts
scripts/master-test-results-*.json
scripts/all-failures.json
scripts/real-search-failures*.json
scripts/expectation-corrections*.json
scripts/failure-analysis.json