28 lines
332 B
Plaintext
28 lines
332 B
Plaintext
# Git
|
||
.git
|
||
.gitignore
|
||
|
||
# Python 缓存与虚拟环境
|
||
__pycache__/
|
||
*.py[cod]
|
||
*$py.class
|
||
.venv/
|
||
venv/
|
||
env/
|
||
|
||
# 运行时/本地数据(镜像内不需要,compose 可挂载 uploads)
|
||
tmp/
|
||
uploads/
|
||
logs/
|
||
|
||
# 临时目录与杂项
|
||
.tmp-*
|
||
*.log
|
||
.DS_Store
|
||
Thumbs.db
|
||
|
||
test.py
|
||
erom-report-service.tar
|
||
test*
|
||
erom-report-service.tar.backup
|