-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
91 lines (74 loc) · 2.88 KB
/
Copy path.gitignore
File metadata and controls
91 lines (74 loc) · 2.88 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
# =============================================================================
# Kite Ground Control - .gitignore
# =============================================================================
# OS
.DS_Store
Thumbs.db
# Dependencies
node_modules
# Build output
/build
/.svelte-kit
/package
# Documentation site (MkDocs) build output + local Python venv
/site/
/.venv/
# Environment
.env
.env.*
!.env.example
# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
# Tauri specific generated / cache
.tauri/
*.log
# Android / Mobile specific Tauri configuration files
# Currently not used (Android development is paused).
# These can be un-ignored later when mobile support is resumed.
tauri.android.conf.json
src-tauri/tauri.android.conf.json
# =============================================================================
# Rust / Tauri
# =============================================================================
src-tauri/target/
# Tauri generated code (especially from Android / mobile development)
# This folder can become very large and should never be committed.
src-tauri/gen/
# Custom cargo target directory (used on Windows to avoid OneDrive spaces)
# See src-tauri/.cargo/config.toml
cargo-target/
target/
# =============================================================================
# IDE / Editor
# =============================================================================
.idea/
.vscode/
*.swp
*.swo
# AI assistant config — kept local (not everyone uses Claude; the shareable rules live in
# docs/dev/AI-ASSIST-RULES.md). Ignore the whole .claude/ directory.
.claude/
# =============================================================================
# just task runner (if user installs it locally)
# =============================================================================
.just/
# =============================================================================
# Documentation site (MkDocs) — see docs/active/USER_DOCS_ARCHITECTURE.md
# =============================================================================
# Generated static site output (rebuilt by `mkdocs build` / `mkdocs serve`)
/site/
# Local Python virtualenv for the docs toolchain
/.venv/
# =============================================================================
# Local AI-assistant instructions (CLAUDE.md)
# =============================================================================
# Kept local: contains personal/local references (language, machine paths, the
# private dev-docs location). The shareable, generalised version is published at
# docs/dev/AI-ASSIST-RULES.md.
/CLAUDE.md
# =============================================================================
# Collected build outputs — installers + standalone binary gathered here by the
# build scripts (scripts/collect-release.*). Local per developer; never committed.
# =============================================================================
/release/