-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
56 lines (42 loc) · 1.16 KB
/
Copy path.gitignore
File metadata and controls
56 lines (42 loc) · 1.16 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
# Dependencies
node_modules/
# Build output
dist/
src-tauri/target/
# Generated bindings (regenerated by cargo test)
src/types/bindings/
src-tauri/bindings/
# Generated by tauri-build on every build (schemas for capabilities/)
src-tauri/gen/schemas/
# uv sidecar — ~40 MB per target, fetched by `npm run fetch-uv`
src-tauri/binaries/
# Python leftovers from running the example scripts
__pycache__/
*.pyc
.venv/
# Local working data, not part of the app
domains_raw.json
domains_verified.csv
# Agent / working docs — kept locally, not published to the repo
CLAUDE.md
AGENTS.md
plan.md
# Demo scripts — not published; the example-dependent Rust tests skip when absent
examples/
# Scripting guide — kept locally, not published. README covers the same ground
# (manifest, field types, arg styles, structured events) on its own, so nothing
# in the published tree may link here.
docs/
# Source artwork for regenerating the icon set (`tauri icon icons/app-icon.png`).
# Leading slash anchors to the repo root ONLY — the bundle icons the build needs
# live in src-tauri/icons/ and must stay tracked.
/icons/
# IDE
.idea/
# OS
.DS_Store
# Env
.env
.env.*
# Logs
*.log