-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy path.gitignore
More file actions
59 lines (51 loc) · 952 Bytes
/
Copy path.gitignore
File metadata and controls
59 lines (51 loc) · 952 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
# Rust
target/
**/*.rs.bk
*.pdb
Cargo.lock.bak
# Tauri build artifacts
apps/desktop/target/
apps/desktop/gen/
# The bundled runner is produced at build time, not committed. Keep the
# directory itself (via .gitkeep) so the bundle.resources glob always
# matches; ignore only the binaries staged into it.
apps/desktop/bin/*
!apps/desktop/bin/.gitkeep
# Node / frontend
node_modules/
dist/
.vite/
*.tsbuildinfo
.pnpm-store/
.npm/
.yarn/
# Editor / OS
# Claude Code local-user settings - keep out of version control
.claude/settings.local.json
.vscode/*
!.vscode/settings.json.example
!.vscode/extensions.json
.idea/
*.swp
*.swo
.DS_Store
Thumbs.db
desktop.ini
# Logs / temp
*.log
logs/
*.tmp
.env
.env.local
.env.*.local
# Coverage
coverage/
*.profraw
# Embedded engines downloaded at runtime
.duckle/cache/
.duckle/engines/
# Local DuckDB CLI for tests (DUCKLE_DUCKDB_BIN)
.duckdb-cli/
.duckdb-cli-*/
# stray sink test outputs
samples/*.parquet