-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.dockerignore
More file actions
69 lines (64 loc) · 1.62 KB
/
Copy path.dockerignore
File metadata and controls
69 lines (64 loc) · 1.62 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
# The Docker build context is the repo root. This file keeps host-only
# artifacts, caches, and heavyweight media out of the context so builds stay
# small and fast.
#
# Runtime file reads that MUST stay in the context:
# - backend/rag.py DOC_PATHS reads CLAUDE.md, docs/**/*.md, and
# frontend/public/USER_GUIDE.md at runtime; docs/ (minus audits) and
# frontend/public therefore stay included.
# - frontend/public/** ships worklets, soundfonts, and test tones that the
# Vite build copies into dist; the negation below re-includes it after
# the media-extension excludes.
# - backend/modules/**/assets (for example backend/modules/plugin/assets)
# ships runtime image assets and is not excluded.
# Version control and editor state.
.git
.github
.gitattributes
.gitmodules
.claude
.vscode
.serena
.playwright-mcp
.gradio
.orb_attachments
# Local caches and build state.
.pytest_cache
.ruff_cache
.uv-cache
.vite
.tmp-shots
.venv
**/node_modules
**/__pycache__
**/*.pyc
**/*.tsbuildinfo
# Host-only apps, artifacts, and archives.
electron-ui
data
exports
logs
archive
showcase
docs/audits
audit-reports
backend/rag_index
backend/modules/vocal/transcription/.whisper_venv
sidecars
frontend/dist
_RECOVERY_BACKUP
_loadertest
ganduit
sliders
scripts
tests
repomix-output.md
vj-embedded-snapshot.md
# Model weights and audio media never belong in the image.
**/*.safetensors
**/*.ckpt
**/*.wav
# frontend/public must remain complete (worklets, soundfonts, USER_GUIDE.md,
# and the test-tone wavs under edit-modules/ and static/), so it is
# re-included after the media excludes above. The last matching rule wins.
!frontend/public/**