-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
48 lines (39 loc) · 749 Bytes
/
Copy path.gitignore
File metadata and controls
48 lines (39 loc) · 749 Bytes
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
# Build artifacts
/target/
**/*.rs.bk
*.pdb
# Phase C local-web-UI build outputs. `web/` is committed source;
# `web-dist/` is regenerated by `npm run build` and embedded into the
# binary via rust-embed at compile time. Contributors run the npm
# build before `cargo build` (see AGENTS.md "Building the web UI").
/web-dist/
/web/node_modules/
/web/dist/
# Cargo lock (keep for binary, ignore for library)
# Cargo.lock
# Environment and config
.env
.env.*
!.env.example
config.yaml
!.env.example
# IDE
/.idea/
/.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# FFmpeg binaries (auto-downloaded on Windows)
/ffmpeg/
# Storage (database, recordings, snapshots)
/data/
/recordings/
/snapshots/
# Temporary files
temp.txt
# Logs
*.log
/logs/