-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
68 lines (62 loc) · 1.65 KB
/
.gitignore
File metadata and controls
68 lines (62 loc) · 1.65 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
# Local overrides / env (never commit secrets)
.env
.env.*.local
*.local
standalone-repo-output/
# Credentials / keys
*.pem
credentials.json
# IDE
.idea/
.cursor/
# Demo toolchain — regenerable outputs (Manim, VHS, local test runs)
docs/demos/.venv/
docs/demos/animations/media/
docs/demos/terminal/rendered/
docs/demos/test-results/
# .vscode/ checked in for launch configs (intercept step-debug)
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# -----------------------------------------------------------------------------
# Local mirrord binary (install script may leave in repo root)
/mirrord
# Dependencies / build artifacts (do not publish or commit)
# -----------------------------------------------------------------------------
node_modules/
vendor/
__pycache__/
*.pyc
.venv/
venv/
.env/
dist/
target/
build/
.gradle/
.npm/
.pnp.*
output/
*.egg-info/
*.egg
.mvn/wrapper/maven-wrapper.jar
# -----------------------------------------------------------------------------
# sample-repos/ — nested standalone app repos (each can have its own .git)
# Parent repo tracks source only; ignore nested .git and build artifacts.
# -----------------------------------------------------------------------------
# Nested repos: ignore .git so they stay standalone (push via create-and-push-sample-repos.sh)
sample-repos/*/.git/
# Build / deps so parent doesn't track artifacts (each sample has its own .gitignore too)
sample-repos/*/node_modules/
sample-repos/*/dist/
sample-repos/*/target/
sample-repos/*/build/
sample-repos/*/.gradle/
sample-repos/*/vendor/
sample-repos/*/__pycache__/
sample-repos/*/.venv/
sample-repos/*/venv/
sample-repos/*/output/
sample-repos/*/.mvn/wrapper/maven-wrapper.jar