-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
90 lines (77 loc) · 1.18 KB
/
Copy path.gitignore
File metadata and controls
90 lines (77 loc) · 1.18 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
# ====== Rust / Cargo ======
/target/
**/*.rs.bk
*.pdb
# Some teams check in Cargo.lock for binaries; keep it.
# (delete the next line if this becomes a library)
# Cargo.lock
# ====== gitgres test artifacts ======
# server.log written by tests/gh_headline.rs and friends
target/server.log
target/full_api_server.log
# Bundled embedded-postgres binaries downloaded by postgresql_embedded
.cache/
*.tar.gz
*.tar.xz
# ====== Local dev ======
*.pem
*.key
*.crt
*.csr
.env
.env.*
!.env.example
# Rust-analyzer + tooling caches
.cargo/
.rustc_info.json
# ====== IDEs / editors ======
.idea/
.vscode/
*.swp
*.swo
*.swn
*.bak
*~
.history/
.zed/
.fleet/
*.iml
# Claude Code & related agent caches
.claude/
CLAUDE.md.bak
# ====== OS junk ======
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini
$RECYCLE.BIN/
# ====== Logs / dumps / scratch ======
*.log
*.dump
*.pid
*.seed
*.pid.lock
core.*
.*.swp
# ====== Built docs ======
/book/
/docs/_build/
/site/
# ====== Coverage / profiling ======
*.profraw
*.profdata
/coverage/
tarpaulin-report.html
cobertura.xml
lcov.info
# ====== Local Postgres scratch ======
/data/
/pgdata/
# ====== Misc ======
node_modules/
*.tgz
*.zip