39 lines
320 B
Plaintext
39 lines
320 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.egg-info
|
|
.eggs
|
|
dist
|
|
build
|
|
.venv
|
|
venv
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# References (不需要包含在鏡像中)
|
|
references/
|
|
|
|
# Tests (生產鏡像不需要)
|
|
tests/
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# Store (運行時掛載)
|
|
store/
|