-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy path.gitignore
More file actions
89 lines (76 loc) · 1.92 KB
/
Copy path.gitignore
File metadata and controls
89 lines (76 loc) · 1.92 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
# Rust
target/
**/*.rs.bk
*.pdb
Cargo.lock.bak
# Local build tooling (e.g. a downloaded protoc for the duckle-lance sidecar);
# not committed - CI installs protoc itself.
.tools/
# 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/
# Console runtime state: live sessions and account hashes. Never committed.
# Deployment targets: server URLs plus an encrypted API key per workspace.
.duckle/deploy-targets.json
.duckle/console.db
.duckle/console.db-wal
.duckle/console.db-shm
.duckle/console-sessions.json
.duckle/console-users.json
.duckle/console-users.json.migrated
# Local DuckDB CLI for tests (DUCKLE_DUCKDB_BIN)
.duckdb-cli/
.duckdb-cli-*/
# stray sink test outputs
samples/*.parquet
# Local dev guidelines (do not track)
CLAUDE.md
# web-editor spike build artifact (#75 phase 2)
frontend/dist-web/
# Local-only tooling and indexes. Never committed: they are derived from the
# code, they are mine rather than the project's, and a generated index that is
# committed eventually disagrees with what it came from.
codegraph/
scripts/codegraph.py
scripts/cg.py
# Portable working kit for other projects. Local only: it is method rather than
# product, it is mine rather than this project's, and nothing in it ships.
dev-kit/