35 lines
429 B
Plaintext
35 lines
429 B
Plaintext
# ===== 临时与缓存 =====
|
|
tmp/
|
|
__pycache__/
|
|
*.pyc
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
logs/
|
|
|
|
# ===== 环境配置(保留模板) =====
|
|
.env
|
|
.env.local
|
|
!.env.template
|
|
|
|
# ===== Node =====
|
|
node_modules/
|
|
|
|
# ===== Python 虚拟环境 =====
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# ===== infra 敏感文件 =====
|
|
infra/**/*.key
|
|
infra/**/*.pem
|
|
infra/**/*.secret
|
|
|
|
# ===== IDE =====
|
|
.idea/
|
|
.vscode/
|
|
|
|
# ===== 分发/构建产物 =====
|
|
dist/
|
|
build/
|
|
*.egg-info/
|