/ .gitignore
.gitignore
 1  # macOS
 2  .DS_Store
 3  .AppleDouble
 4  .LSOverride
 5  ._*
 6  
 7  # Radicle
 8  .rad/
 9  *.rad-patch
10  *.rad-issue
11  
12  # Claude
13  CLAUDE.md
14  .claude-flow/
15  .hive-mind/
16  
17  
18  # Node.js
19  node_modules/
20  npm-debug.log*
21  yarn-debug.log*
22  yarn-error.log*
23  .npm
24  
25  # Logs
26  logs/
27  *.log
28  
29  # Runtime data
30  pids
31  *.pid
32  *.seed
33  *.pid.lock
34  
35  # Environment variables
36  .env
37  .env.local
38  .env.*.local
39  
40  # Editor directories and files
41  .idea/
42  .vscode/
43  *.swp
44  *.swo
45  *~
46  
47  # Build outputs
48  dist/
49  build/
50  out/
51  
52  # Temporary files
53  tmp/
54  temp/
55  *.tmp
56  
57  # Backup files
58  *.bak
59  *.backup
60  
61  # Cache
62  .cache/
63  
64  # Security
65  *.pem
66  *.key
67  *.cert
68  *.crt
69  private/
70  secrets/
71  
72  # Documentation build
73  docs/_build/
74  docs/_site/
75  
76  # Shape Up cycle artifacts (keep pitches and cycles)
77  shape-up/cycles/*.draft
78  shape-up/pitches/*.draft
79  # Private demo repositories
80  auxo-private-demo/
81  
82  # Test repositories
83  public-tailscale-test/
84  test-tailscale-sync/
85  # CI/CD artifacts
86  .woodpecker/
87  ci-artifacts/
88  .shellcheck-reports/