-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
81 lines (67 loc) · 1.67 KB
/
Copy path.gitignore
File metadata and controls
81 lines (67 loc) · 1.67 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
# Rust
/target
**/*.rs.bk
Cargo.lock.bak
# Tauri
/src-tauri/target
/src-tauri/gen
/src-tauri/WixTools
# Issue #25: the privileged helper sidecars - the VSS helper on Windows
# (DESIGN s5.3.1) and the APFS mount broker on macOS (DESIGN s5.3.2) - are
# BUILT in CI (release.yml / dev-channel.yml) and copied here with a
# target-triple suffix just before `tauri build`; never committed source
# artifacts.
/src-tauri/binaries
# Node
node_modules/
ui/dist
ui/.vite
*.local
# Coverage artefacts (cargo-llvm-cov + vitest; regenerate with `just coverage`)
ui/coverage
/coverage-rust.json
/coverage-baseline.json
/scratch-rust-cov.json
# Editor
.idea/
.vscode/
*.swp
*.swo
*~
# OS noise
.DS_Store
Thumbs.db
Desktop.ini
# Driven runtime / dev artefacts
.env
.env.local
.env.test
.env.*.local
*.log
/logs
/state.db
/state.db-*
# sqlx prepare scratch DB (regenerate with `cargo sqlx prepare`)
/.driven-prepare.db
/.driven-prepare.db-*
# OAuth client credentials (Desktop client secret is technically not-secret
# but treat as one for hygiene). Stash values into .env.test instead.
client_secret*.json
gcp-oauth-*.json
*-oauth-client.json
# Pre-implementation audit (informational; not part of source)
/.audit-out
# Claude Code session state stays local, but repo-committed skills (the
# agent-facing QA runbook lives there - issue #239) are tracked.
/.claude/*
!/.claude/skills/
# Tauri build outputs not under src-tauri/target
/release
# Mobile icon output from `cargo tauri icon` - Driven is desktop-only, so these
# are regenerable cruft, not source.
/src-tauri/icons/android
/src-tauri/icons/ios
# gstack skill scratch
/.gstack
# codex review stderr capture (transient, never source)
/codex-err.txt