-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.dockerignore
More file actions
59 lines (50 loc) · 846 Bytes
/
.dockerignore
File metadata and controls
59 lines (50 loc) · 846 Bytes
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
# Build artifacts
target/
**/target/
# Benchmark data and large test files
src/rust/fcb_core/benchmark_data/
src/rust/fcb_core/benchmark_results*
src/rust/fcb_core/comparison_*
src/rust/fcb_core/http_benchmark_results.csv
src/rust/temp/
# Large data files
**/*.fcb
**/*.bson
**/*.cbor
**/*.json
**/*.jsonl
# Keep only essential json files (exclude data files but keep config)
!Cargo.toml
!package.json
!**/Cargo.toml
!src/rust/fcb_api/schema/*.yaml
!src/rust/fcb_core/tests/data/header.json
# Documentation and examples
docs/
examples/
README.md
*.md
!CLAUDE.md
# Git and development files
.git/
.github/
.gitignore
*.log
*.svg
# Python and other language artifacts
src/py/
src/ts/node_modules/
**/__pycache__/
*.pyc
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
# OS files
.DS_Store
Thumbs.db
# Temporary files
temp/
**/temp/
*.tmp