Files
devcontainers/vibe-dev/.gitignore
2025-12-25 00:31:42 +08:00

41 lines
699 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# === 敏感信息 (API Keys & Secrets) ===
.env
.env.*
!.env.example
*.pem
id_rsa*
authorized_keys
# === Docker & 容器相关 ===
.devcontainer/
# 如果你以后把 Docker 卷映射到了本地文件夹(如 ./data
/data/
/db/
# === Rust 相关 ===
/target/
**/*.rs.bk
# Cargo.lock 通常建议上传(如果是二进制项目),但如果你是做纯库开发可以忽略
# Cargo.lock
# === Bun / Node.js 相关 ===
node_modules/
/dist/
/build/
.bun-build/
# Bun 的锁文件建议保留,但如果你想完全由容器控制可以忽略
# bun.lockb
# === 编辑器与系统相关 ===
.vscode/
.idea/
*.swp
*.swo
.DS_Store
Thumbs.db
# === 临时文件与日志 ===
*.log
tmp/
temp/