-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
46 lines (39 loc) · 1.62 KB
/
.gitignore
File metadata and controls
46 lines (39 loc) · 1.62 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
# ------------------------------------------------------------------------------
# 1. RUST & CARGO
# ------------------------------------------------------------------------------
# Ignore all build artifacts generated by the compiler and cargo.
/target/
# These are backup files generated by rustfmt.
**/*.rs.bk
# ------------------------------------------------------------------------------
# 2. EBPF SPECIFIC (AYA)
# ------------------------------------------------------------------------------
# We do not commit the generated vmlinux.h because it is specific to your
# local kernel version. Each developer generates their own via xtask.
crates/sentic-ebpf/src/vmlinux.h
# Compiled BPF object files (usually handled by xtask/target, but extra safety)
*.elf
*.o
# ------------------------------------------------------------------------------
# 3. STORAGE & DATA (REDB)
# ------------------------------------------------------------------------------
# Ignore local database files used for testing the "Durable Courier" model.
# We use the .redb extension for our local persistent queue.
*.redb
*.redb.lock
# ------------------------------------------------------------------------------
# 4. IDE & ENVIRONMENT
# ------------------------------------------------------------------------------
# VS Code specific settings
.vscode/
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
# Lima / Environment logs
*.log
# ------------------------------------------------------------------------------
# 5. OS SPECIFIC
# ------------------------------------------------------------------------------
.DS_Store
Thumbs.db