docker_streamlit_rteb / .dockerignore
q275343119's picture
add - init
943f734
raw
history blame contribute delete
614 Bytes
# Git 相关文件
.git
.gitignore
.gitattributes
# IDE 相关文件
.idea
.vscode
*.swp
*.swo
# Python 相关文件
__pycache__
*.pyc
*.pyo
*.pyd
.Python
env
pip-log.txt
pip-delete-this-directory.txt
.tox
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.log
.git
.mypy_cache
.pytest_cache
.hypothesis
# 虚拟环境
.venv
venv/
ENV/
env/
.venv/
# 系统文件
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# 临时文件
*.tmp
*.temp
*.bak
*.backup
# 日志文件
*.log
logs/
# 文档文件
README.md
TODO.md
*.md
# 测试文件
test/
tests/
*_test.py
test_*.py