-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path.dockerignore
More file actions
133 lines (116 loc) · 1.97 KB
/
Copy path.dockerignore
File metadata and controls
133 lines (116 loc) · 1.97 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
123
124
125
126
127
128
129
130
131
132
133
# Dependencies (reinstalled in container)
node_modules
**/node_modules
.pnpm-store
# Version control
.git
.github
.husky
# IDE files
.vscode
.idea
*.sublime-*
*.iml
.history
# Editor swap/backup files
*.swp
*.swo
*~
*.bak
*.tmp
# LLM/Claude files
.clinerules
.claude
# Environment variables
.env
.env.local
.env.*
!.env.example
!.env.template
# Local npm config
.npmrc
.yarnrc
# Logs and sessions
logs
sessions
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
pnpm-debug.log*
# OS files
.DS_Store
Thumbs.db
Desktop.ini
# Testing output (NOT needed in container)
coverage
.nyc_output
test-results
junit.xml
*.tap
test-report.xml
test-results*.json
test-output.txt
# Build output (rebuilt in container)
dist
!dist/proxy/
!dist/proxy/proxy-bootstrap.js
!dist/proxy/proxy-bundle.cjs
!dist/proxy/utils/
!dist/proxy/utils/**
packages/*/dist
packages/*/tsconfig.tsbuildinfo
packages/mcp-debugger/package
packages/mcp-debugger/package/**
packages/adapter-rust/vendor/codelldb/*
!packages/adapter-rust/vendor
!packages/adapter-rust/vendor/codelldb
!packages/adapter-rust/vendor/codelldb/linux-x64
!packages/adapter-rust/vendor/codelldb/linux-x64/**
!packages/adapter-rust/vendor/codelldb/linux-arm64
!packages/adapter-rust/vendor/codelldb/linux-arm64/**
build
*.tsbuildinfo
**/*.tsbuildinfo
.turbo
# Profiling & debugging
*.heapsnapshot
*.cpuprofile
*.heap
v8.log
.chrome
# Build tool caches
.esbuild
.parcel-cache
.webpack
.rollup.cache
# Temporary files
tmp
temp
-p
# Python cache
__pycache__
*.py[cod]
*$py.class
.pytest_cache
# Personal/temporary files
**/personal-config.json
/test-*
/test_*.py
/*_REPORT.md
/*_SUMMARY.md
/*_ANALYSIS.md
/integration_test_*.log
coverage-analysis-details.json
test-refactor-summary.json
migrate-to-vitest.js
fix-test-imports.cjs
analyze-test-results.cjs
# Documentation artifacts (keep in git, not in container)
CI_TEST_FAILURE_INVESTIGATION.md
COVERAGE_AUTO_DISPLAY.md
KNOWN_ISSUES.md
MCP_DEBUGGER_COMPARISON_RESULTS.md
# Manual tests
tests/manual