-
Notifications
You must be signed in to change notification settings - Fork 640
Expand file tree
/
Copy path.gitignore
More file actions
81 lines (65 loc) · 1.77 KB
/
.gitignore
File metadata and controls
81 lines (65 loc) · 1.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
# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
dist/
build/
# Test/IDE
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
.trae/
.idea/
.vscode/
# Pipeline outputs (regenerable — never commit large media)
output/
pipeline/
tests/qa/output/
# Project workspaces (generated assets, renders — all regenerable)
projects/
# Corpus directories (downloaded stock clips, thumbnails, embeddings —
# regenerable from source APIs via corpus_builder). Explicit rule even
# though most corpora live under projects/ since agents sometimes
# build scratch corpora at the repo root.
corpus/
**/corpus/
# User music library (personal royalty-free tracks — not part of repo)
music_library/
# Environment & credentials
.env
.env.local
*.env
.youtube-token.json
# Stray media downloads (test/scratch clips left in repo root)
pexels_video_*.mp4
# Scratch/debug scripts
scratch/
# Internal docs (strategy, handoffs, playbooks — not shipped)
internal/
# Local agent config (user-specific)
.claude/memory/
.claude/settings.local.json
# Agent skills lock (local install tracking)
skills-lock.json
# Generated images (logo drafts — final logo lives in assets/)
logo_*.png
generated_image.png
# Downloaded music files (Pixabay, Freesound — not source code)
pixabay_music_*
# OS
.DS_Store
Thumbs.db
# Node (for remotion-composer/)
node_modules/
# Remotion build output and copied project assets (regenerable at render time)
remotion-composer/out/
remotion-composer/public/*
# But keep demo props (shipped with the project for zero-key demos)
!remotion-composer/public/demo-props/
# Ignore test/scratch compositions in demo-props (keep only curated demos)
remotion-composer/public/demo-props/test-*
remotion-composer/public/demo-props/talking-head-*
remotion-composer/public/demo-props/caption-burn-*