42 lines
321 B
Plaintext
42 lines
321 B
Plaintext
# Docker 相关文件
|
|
.dockerignore
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
|
|
# 构建产物
|
|
dist/
|
|
build/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# 文档
|
|
README.md
|
|
*.md
|
|
|
|
# 配置
|
|
.env
|
|
.env.local
|