-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
70 lines (61 loc) · 998 Bytes
/
Copy path.gitignore
File metadata and controls
70 lines (61 loc) · 998 Bytes
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
# Python 缓存与虚拟环境
__pycache__/
*.py[cod]
*.pyo
*.pyd
.venv/
.pytest_cache/
*.log
# 本地环境变量
.env
.env.*
!.env.example
# 本地配置(可能包含密钥)
config/config.yml
config/*.local.yml
config/plugins.yml
plugins/config/*.local.yml
plugins/config/*.yml
napcat.sh
# 运行日志与本地状态目录
logs/
storage/
storage/logs/
storage/cache/
storage/tmp/
storage/memory/
storage/knowledge/*.db
storage/knowledge/*.db-*
storage/affinity/
storage/emoji/
storage/sticker/
storage/image_templates/
storage/.secret_key
storage/admin_state.json
storage/whitelist_groups.json
# 编辑器与系统文件
.vscode/
.idea/
*.swp
Thumbs.db
Desktop.ini
.DS_Store
# SSH 脚本(包含敏感信息)
scripts/*ssh*.exp
scripts/*ssh*.py
scripts/*vps*.py
scripts/*vps*.sh
scripts/*vps*.ps1
# Claude Code 本地文件
.claude/
# WebUI 前端
webui/node_modules/
webui/dist/
webui/.vite/
webui/*.tsbuildinfo
# 数据库备份
*.db.bak
*.sqlite3
# coverage
htmlcov/
.coverage