51 lines
479 B
Plaintext
51 lines
479 B
Plaintext
# Git
|
||
.git
|
||
.gitignore
|
||
|
||
# Python
|
||
__pycache__/
|
||
*.pyc
|
||
*.pyo
|
||
*.pyd
|
||
.Python
|
||
env/
|
||
venv/
|
||
.venv/
|
||
pip-log.txt
|
||
pip-delete-this-directory.txt
|
||
.tox/
|
||
.coverage
|
||
.coverage.*
|
||
.pytest_cache/
|
||
|
||
# 环境变量文件
|
||
.env
|
||
.env.production
|
||
|
||
# IDE
|
||
.vscode/
|
||
.idea/
|
||
*.swp
|
||
*.swo
|
||
|
||
# OS
|
||
.DS_Store
|
||
Thumbs.db
|
||
|
||
# 日志文件
|
||
*.log
|
||
|
||
# 测试文件(可选,如果不想包含在镜像中)
|
||
test/
|
||
|
||
# 文档文件(可选)
|
||
*.md
|
||
LICENSE
|
||
|
||
# 启动脚本(Windows)
|
||
*.bat
|
||
|
||
# 其他临时文件
|
||
*.tmp
|
||
.cache/
|