32 lines
270 B
Plaintext
32 lines
270 B
Plaintext
|
|
# 忽略文件
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
.env
|
||
|
|
.env.example
|
||
|
|
__pycache__
|
||
|
|
*.pyc
|
||
|
|
*.pyo
|
||
|
|
*.pyd
|
||
|
|
.Python
|
||
|
|
*.so
|
||
|
|
*.egg
|
||
|
|
*.egg-info
|
||
|
|
dist
|
||
|
|
build
|
||
|
|
logs
|
||
|
|
*.log
|
||
|
|
*.sqlite
|
||
|
|
*.db
|
||
|
|
*.cache
|
||
|
|
.coverage
|
||
|
|
.pytest_cache
|
||
|
|
.mypy_cache
|
||
|
|
.vscode
|
||
|
|
.idea
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
node_modules
|
||
|
|
static/node_modules
|