3426acbb77
- 排除 /target、/data、secret.bin、.env 等敏感与构建产物 - 保留 data/.gitkeep 占位以便运行时生成 bot.db / crypto.db
33 lines
286 B
Plaintext
33 lines
286 B
Plaintext
# Rust build artifacts
|
|
/target/
|
|
**/*.rs.bk
|
|
Cargo.lock.bak
|
|
|
|
# Runtime data (bot 运行时生成)
|
|
/data/
|
|
!data/.gitkeep
|
|
|
|
# Secrets
|
|
*.pem
|
|
*.key
|
|
*.secret
|
|
secret.bin
|
|
|
|
# Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Cache
|
|
.cache/ |