-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy path.gitignore
More file actions
77 lines (60 loc) · 3.67 KB
/
Copy path.gitignore
File metadata and controls
77 lines (60 loc) · 3.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
# ─── Build output ────────────────────────────────────────────────────────────
build.cmake
cmake-build
cmake-build-*
# Sanitizer build dirs created by tools/sanitizers/run.sh (build-address+undefined,
# build-thread, etc.) and any other ad-hoc build-<flavor>/ trees.
build-*
# But the GHA reusable workflows are named build-*.yml and must stay tracked.
!.github/workflows/build-*.yml
build_output.txt
cmake_output.txt
.cmake
# ─── Runtime / data files ─────────────────────────────────────────────────────
nsclient.log
nsclient.fatal
nsclient.db
# ─── Rust ─────────────────────────────────────────────────────────────────────
rust/*/target
# ─── Python ───────────────────────────────────────────────────────────────────
*.pyc
.venv
# ─── Node ─────────────────────────────────────────────────────────────────────
node_modules
# ─── Temp / swap files ────────────────────────────────────────────────────────
*.tmp
*~
*.swp
# ─── IDE — CLion / JetBrains ──────────────────────────────────────────────────
.idea
cmake-build-debug
# ─── IDE — VS Code ────────────────────────────────────────────────────────────
.vscode
# ─── IDE — CodeLite ───────────────────────────────────────────────────────────
.codelite
# ─── IDE — Claude Code ────────────────────────────────────────────────────────
.claude
# ─── Vagrant ──────────────────────────────────────────────────────────────────
.vagrant
# ─── Credentials / secrets ────────────────────────────────────────────────────
# VM login credentials used by local test scripts
.vm.pwd
# ─── AI agent instructions (local only, not shared) ──────────────────────────
AGENT_INSTRUCTIONS.md
.github/copilot-instructions.md
.claude
# ─── Local / custom content ───────────────────────────────────────────────────
# Custom installers not part of the main repo
installers/installer-op5
# Build artefacts and packages
packages/*
# Legacy code not tracked
legacy/*
_build
/tmp/
/docs/design/*
\\.ssh\\*
*.pwd
# Local inventory written by build/powershell/provision-fleet-machines.ps1
.fleet-machines.json
rotate-signing-secret.ps1