-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy path.dockerignore
More file actions
96 lines (80 loc) · 1.14 KB
/
.dockerignore
File metadata and controls
96 lines (80 loc) · 1.14 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
# Git and version control
.git
.gitignore
.gitattributes
# IDE and editor files
.vscode
.cursor
.clj-kondo
.lsp
*.swp
*.swo
*~
# Build artifacts and dependencies (but keep package*.json)
node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.yarn
coverage
.nyc_output
# Logs
logs
*.log
log
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Documentation (except root README)
docs
*.md
!README.md
# CDK and deployment (separate from runtime)
cdk
deploy
# Test and development files
e2e
__tests__
test
*.test.js
*.test.ts
*.spec.js
*.spec.ts
.env.test
.env.local
cypress
.cypress
# Misc development files
.DS_Store
.env.example
example.env
.cache
tmp
temp
# Binary and compiled files
*.tar.gz
*.zip
*.exe
# Database files
*.db
*.sqlite
# Large data directories
data
uploads
# Delphi specific (large ML/AI files)
delphi/umap_narrative/cache
delphi/umap_narrative/*.pkl
delphi/umap_narrative/*.joblib
delphi/eda_notebooks/*.ipynb
delphi/tests/profile_data
# file-server and client apps
build/
client-admin/build
client-admin/node_modules/
client-participation/dist
client-participation/node_modules
client-report/dist
client-report/node_modules