/ .dockerignore
.dockerignore
 1  # Build artifacts
 2  target/
 3  .cargo/
 4  
 5  # Version control
 6  .git/
 7  .gitignore
 8  
 9  # Documentation build
10  book/target/
11  docs/
12  
13  # IDE
14  .vscode/
15  .idea/
16  *.swp
17  *.swo
18  
19  # OS
20  .DS_Store
21  Thumbs.db
22  
23  # Logs
24  *.log
25  
26  # Runtime
27  test-here/
28  workspace/
29  
30  # CI/CD
31  .github/
32  
33  # Vercel
34  .vercel/
35  public/
36  
37  # Node modules (if any)
38  node_modules/