-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
55 lines (46 loc) · 855 Bytes
/
Copy path.gitignore
File metadata and controls
55 lines (46 loc) · 855 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
# ========== 敏感配置(严禁提交) ==========
.env
*.env
!.env.example
# ========== Python ==========
__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
.ruff_cache/
.mypy_cache/
# ========== 虚拟环境 ==========
.venv/
venv/
env/
ENV/
# ========== 数据缓存(任务库、生成的反讽图) ==========
.data/
**/.data/
# ========== 构建产物 ==========
dist/
build/
*.egg-info/
# ========== 编辑器 / 系统 ==========
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# ========== Playwright 浏览器二进制(首次运行下载) ==========
ms-playwright/
# ========== 项目根的运维工具二进制(用户自己下载) ==========
cloudflared
cloudflared.exe
ngrok
ngrok.exe
# ========== 节点(如果未来加 Next.js 前端) ==========
node_modules/
.next/
.nuxt/
# ========== 日志 ==========
*.log
logs/