-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
120 lines (96 loc) · 2.17 KB
/
Copy path.gitignore
File metadata and controls
120 lines (96 loc) · 2.17 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
# dependencies
/node_modules
/YTDL_Scripts/node_modules
/.pnp
.pnp.js
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
/dist
# misc
.DS_Store
# UFOSINT import checkpoints (local progress state, not needed in repo)
data/ufosint/*-checkpoint.json
.plans/
*.pem
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
supabase/.env
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
debug.log
debug.txt
# local env files
.env*.local
# typescript
*.tsbuildinfo
next-env.d.ts
# IDE
/.idea
/.vscode
# temp files
.tmp
.cache
nul
# Planning documents (local only, never committed)
/.plans/
RESTRUCTURING-PLAN.md
deployment-plan.md
scripts/sync/SYNC-PIPELINE.md
# screenshots
/screenshots/
# audit files
aod-audit-cheatsheet.txt
# YTDL Scripts
/YTDL_Scripts/cookies.txt
/YTDL_Scripts/yt-dlp.exe
/YTDL_Scripts/Subtitles_Only/
/YTDL_Scripts/output/
/YTDL_Scripts/downloads/
/YTDL_Scripts/*.log
# Channel pipeline - raw data (large, machine-generated, regenerable)
/data/channels/gerb/transcripts/*.json
/data/channels/gerb/extracted/*.json
/data/channels/gerb/approved/*.json
/data/channels/interviews/*/transcripts/*.json
/data/channels/interviews/*/extracted/*.json
/data/channels/interviews/*/approved/*.json
# Keep index.json, contributions/, and .gitkeep files
# Script output artifacts (generated, not source)
/scripts/output/
# Dev server log
.dev-server.log
dev-server.log
# Claude local settings (per-machine permissions, not portable)
.claude/settings.local.json
# Root-level throwaway session scripts (hardcoded absolute paths)
qa-parse.cjs
# Sparks extraction intermediate output
data/blue-book-index-enriched.json
# Root-level ad-hoc Playwright debug scripts
pw-*.js
# Session-specific screenshot scripts (hardcoded paths / one-off)
scripts/screenshot-batch*.cjs
scripts/screenshot-final.cjs
scripts/retake-network.js
scripts/take-screenshots.js
# One-off data debug / audit scripts (resolved)
scripts/check-condon.js
scripts/check-official-response.js
scripts/list-missing-provenance.js
scripts/test-search.js
scripts/test-search-titles.js
# Playwright test run artifacts
/test-results/
# Business card output files (local only, not for repo)
/cards/
.vercel