my-django/.dockerignore
2025-03-24 13:58:19 +08:00

30 lines
376 B
Plaintext

# 忽略虚拟环境目录
venv/
.env/
*.env
.venv/
# 忽略 Python 编译文件
__pycache__/
*.pyc
*.pyo
*.pyd
# 忽略版本控制相关文件
.git
.gitignore
# 忽略依赖文件(除非你希望它们存在于镜像中)
Pipfile
Pipfile.lock
# 忽略测试文件
tests/
test/
# 忽略日志文件
*.log
# 忽略操作系统自动生成的文件
.DS_Store
Thumbs.db