-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
122 lines (101 loc) · 3.57 KB
/
Copy path.gitignore
File metadata and controls
122 lines (101 loc) · 3.57 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
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
# testing
/coverage
/playwright-report
/test-results
# next.js
/.next/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# env files (can opt-in for committing if needed)
.env*
!.env.example
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts
# ── Raw inputs (drop video/audio here before running the wizard) ───────────────
# Never committed — files are 1–10 GB
/input/
# ── Proxy editing intermediates ───────────────────────────────────────────────
# input/video-proxy/ is already covered by /input/ above
public/proxy/ # proxy-map.json (contains absolute paths, machine-specific)
# ── Pipeline intermediates (large/generated media) ────────────────────────────
public/sync/ # synced video/audio working files
public/transcribe/input/ # audio extracted for Whisper
public/transcribe/input/*.wav
public/transcribe/input/*.mp3
public/transcribe/input/*.flac
public/transcribe/input/*.m4a
public/transcribe/input/*.ogg
public/transcribe/input/*.aac
public/transcribe/input/*.wma
public/transcribe/input/*.aiff
public/transcribe/input/*.alac
public/transcribe/output/ # raw Whisper JSON + VTT
public/thumbnail/ # candidate frames, cutouts, manifest
public/renders/ # final rendered .mp4 files
public/output/ # carousel exports
public/shorts/
public/sync/output
# ── Editable pipeline outputs (text/JSON) ─────────────────────────────────────
public/edit/ → transcript.doc.txt, transcript.json, SRT exports
public/camera/ → camera-profiles.json, frame snapshots, detections
#
# These are committed by default so collaborators (and coding agents) can read
# and edit the transcript. Coding agents like Claude access project context via
# git — committing these files lets the agent see, diff, and propose edits to
# the transcript doc without needing filesystem access.
#
# Uncomment to exclude (e.g. for a private or unreleased episode):
# public/edit/*
# public/camera/*
# Whisper.cpp binary and models (downloaded on first run)
/whisper.cpp/
# Claude Code
.claude/settings.local.json
# Python environments
.envrc
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Python bytecode
scripts/diarize/__pycache__/
*.py[codz]
*$py.class
# ── Runtime directories ───────────────────────────────────────────────────────
# .ragtech/ contains episode metadata, artifact store, and run logs
.ragtech/
# ── Scratch tooling ────────────────────────────────────────────────────────────
# One-off debugging/analysis scripts and their fixtures — not part of the app,
# not meant to be committed (see each file's own header comment).
public/issue5-fixtures/
scripts/compute-frames-issue5.ts
scripts/export-property-spec.ts
# Editor
.vscode/settings.json
# Rust spike build artifacts
spike/audio-sync/target/
spike/rust-decode-spike/ffmpeg-candidate/target/
spike/rust-decode-spike/gstreamer-candidate/target/