forked from rohit-purandare/ShelfBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
123 lines (101 loc) · 1.5 KB
/
.gitignore
File metadata and controls
123 lines (101 loc) · 1.5 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
# Node dependencies
node_modules/
# Logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
logs/
*.log
# Runtime data
pids/
*.pid
*.seed
*.pid.lock
# Coverage
coverage/
*.lcov
.nyc_output/
# Build and cache
build/
dist/
.cache/
.parcel-cache/
.next/
.nuxt/
public/
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Dependency directories
bower_components/
jspm_packages/
# TypeScript
*.tsbuildinfo
# Misc cache and temp
.tmp/
tmp/
temp/
# IDE/editor
.vscode/
.idea/
*.swp
*.swo
*~
# Claude Code
.claude/
CLAUDE.md
# OS files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Docker
.dockerignore
docker-compose.local.yml
docker-compose.dev.yml
# Application specific
# Ignore all data except .gitkeep (if you want to keep the folder structure)
data/*
!data/.gitkeep
*.db
*.db-shm
*.db-wal
*.sqlite
*.sqlite3
# Config
config/config.yaml
# (keep config.yaml.example for reference)
# Export and schema files
cache_export.json
book_cache_export.json
schema-inputs.out
# Disabled workflows
*.disabled
schema-detail.out
# Test files
test/
test-output/
test-reports/
# Performance analysis reports (can be large)
reports/
# Performance analysis tools (development/debugging)
tools/
# Documentation audit tools and reports (temporary analysis files)
documentation-audit/
# Documentation files (internal/temporary)
docs/
# Security and audit files
npm-audit-report.json
results.sarif
*.audit
*.security
# Environment files
.env
.env.local
.env.development
.env.test
.env.production