Files
ai-team-dashboard/.gitignore
fang c97d301e8f chore: 清理备份文件和压缩包
- 从仓库中移除 backup-*.jsonl 备份文件
- 移除 ai-team-dashboard-v1.5.0.tar.gz 压缩包
- 移除 ai-team-dashboard-v1.5.0-README.txt
- 更新 .gitignore 排除备份和压缩包文件
- 添加推送相关文档

Made-with: Cursor
2026-03-11 11:44:14 +08:00

92 lines
1.2 KiB
Plaintext
Raw Permalink 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.
# ==================== 敏感信息文件 ====================
# 包含 Token、密钥等敏感信息不应提交到 Git
config.json
*.env
*.pem
*.key
.env.*
# ==================== 备份和归档文件 ====================
# 备份文件和压缩包不应提交
backup-*.jsonl
*.tar.gz
*.zip
*.tar
*.rar
*.7z
*-README.txt
# ==================== 日志文件 ====================
# 运行时生成的日志文件
logs/
*.log
*.log.*
# ==================== 临时文件 ====================
# 进程 PID 文件
*.pid
# 备份文件
*.backup
*.bak
*.old
# ==================== Node.js ====================
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
.npm
# ==================== 操作系统 ====================
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
# Linux
*~
# ==================== 编辑器 ====================
# VSCode
.vscode/
*.code-workspace
# JetBrains
.idea/
*.iml
# Vim
*.swp
*.swo
*~
# Emacs
*~
\#*\#
# ==================== Docker ====================
.dockerignore
# ==================== 其他 ====================
# 测试覆盖率
coverage/
.nyc_output/
# 构建产物
dist/
build/
*.tgz
# 缓存
.cache/
.temp/
tmp/