Files
2026Technology-Competition/.gitignore
T

31 lines
381 B
Plaintext

# ---- 环境与密钥 ----
.env
.env.*
# ---- 运行时数据 ----
data/
# ---- Python 构建产物 ----
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
.eggs/
# ---- 测试缓存 ----
.pytest_cache/
.coverage
htmlcov/
# ---- 虚拟环境 ----
.venv/
venv/
# ---- 工具内部操作产物(不入库) ----
conversations/
.aura/
# ---- IDE / 编辑器 ----
.vscode/
.idea/