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
# ==========================
# 自定义部分
# ==========================
下载/
test.py
/user.*
/cookie.*
# 下载目录中的所有数据文件(保留目录结构)
download/
/video
# 配置文件和日志(包含用户数据)
config/*
!config/.gitkeep
# Aria2 可执行文件(内置到项目,但不提交到git)
aria2c
aria2c.exe
# ==========================
# Python / Pywebview 后端部分
# ==========================
# Python 编译文件和缓存
__pycache__/
*.py
*$py.class
.pytest_cache/
# Python 虚拟环境 (根据你的习惯,列出了常见的命名)
venv/
.venv/
env/
.env
# 构建产物
/build/
dist/
release/
target/
# 本地环境变量
.env.local
.env.development.local
.env.test.local
.env.production.local
# ==========================
# 操作系统 / IDE 通用部分
# ==========================
# ai IDE 配置
.trae/
.kiro/
# VS Code 配置
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
# 其它临时文件
*.log