-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
75 lines (66 loc) · 1.43 KB
/
.gitignore
File metadata and controls
75 lines (66 loc) · 1.43 KB
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
71
72
73
74
75
# -----------------------------------------------------------------------------
# Python
# -----------------------------------------------------------------------------
# Byte-compiled / optimization / packaging
__pycache__/
*.py[cod]
*$py.class
*.pyo
*.pyd
*.pys
# Distribution / egg
*.egg
*.egg-info/
dist/
build/
.eggs/
pip-wheel-metadata/
# Virtual environments
venv/
env/
.venv/
.env/
# pytest / coverage
htmlcov/
.tox/
.nox/
.coverage
.cache/
.pytest_cache/
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
# mypy / Pylint / Pyright
.mypy_cache/
.dmypy.json
.pyre/
.pytype/
pylint-report.json
# -----------------------------------------------------------------------------
# Project-specific excludes
# -----------------------------------------------------------------------------
config.toml # 项目默认配置,可公开提交时留空或删行
*.local.toml # 个人机密配置
.env.example # 模板可留,真实 .env 会被忽略
.env # 真实敏感信息
# VS Code / JetBrains IDE
.vscode/
.idea/
# Logs
*.log
logs/
# Data outputs / artifacts
data/
output/
*.sqlite
*.db
# -----------------------------------------------------------------------------
# GitHub / CI
# -----------------------------------------------------------------------------
# GitHub Actions runner temp
.github/workflows/*.log
# MacOS / Windows metadata
.DS_Store
Thumbs.db