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
# Rust build artifacts
/target/
**/*.rs.bk
*.pdb
# Cargo lock for libraries (remove this line if you want reproducible builds)
Cargo.lock
# IDE and editor files
.idea/
*.iml
.vscode/
*.swp
*.swo
*~
.DS_Store
# Test configuration with credentials
tests/config.toml
# Keep the example template
!tests/config.toml.example
# Examples configuration with credentials
examples/config.toml
# Keep the example template
!examples/config.toml.example
# Environment files
.env
.env.local
.env.*.local
# Debug files
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# OS files
.DS_Store
Thumbs.db
desktop.ini
# Backup files
*.backup
*.bak
*.tmp
*.temp
# Documentation build output (if you generate docs)
/target/doc/
/target/debug/
/target/release/
# Coverage reports (if you add code coverage)
*.profraw
*.profdata
/coverage/
lcov.info
# Benchmark results
/target/criterion/
# Local test wallets or keypairs
*.json
!package.json
!tsconfig.json
test-wallet.json
wallet.json
keypair.json
# API keys and secrets
*.key
*.pem
*.secret
secrets/
# Local notes
TODO.md
NOTES.md
scratch.md