-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.dockerignore
More file actions
101 lines (83 loc) · 1.28 KB
/
Copy path.dockerignore
File metadata and controls
101 lines (83 loc) · 1.28 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
# Dependencies
node_modules/
**/node_modules/
# Build outputs (will be built in Docker)
dist/
**/dist/
out/
**/out/
build/
**/build/
# Git
.git/
.gitignore
.gitattributes
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Electron build artifacts
apps/electron/dist/
apps/electron/out/
# Test files (but not workspace packages)
apps/e2e/test/
**/*.test.ts
**/*.test.tsx
**/*.spec.ts
**/*.spec.tsx
**/__tests__/
# Documentation (not needed in build)
*.md
!README.md
docs/
# CI/CD
.github/
# Environment files
.env
.env.local
.env.*.local
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Temporary files
*.tmp
*.temp
.cache/
# OS files
Thumbs.db
.DS_Store
# Platform / desktop apps (excluded to keep the build context small; not needed
# for --frozen-lockfile, which tolerates missing workspace members)
apps/ohos/
apps/electron/
apps/e2e/
apps/convex/
apps/docker/
packages/test/
packages/electron-common/
# HarmonyOS ohpm symlinks (Windows tar error)
**/oh_modules/
# Local binaries (re-downloaded in final stage)
plugins/
plugins/**
bin/
bin/**
# Test fixtures & logs
test/
test/**
.log/
**/.log/
artifacts/e2e/
**/artifacts/e2e/
.hvigor/
**/.hvigor/
# Misc
.agents/
# Allow the E2E test Docker image (apps/e2e/Dockerfile) to access these
!apps/e2e/
!packages/test/