51 lines
424 B
Plaintext
51 lines
424 B
Plaintext
# Python
|
||
__pycache__/
|
||
*.py[cod]
|
||
*$py.class
|
||
*.so
|
||
.Python
|
||
|
||
# Virtual Environment
|
||
venv/
|
||
env/
|
||
ENV/
|
||
.venv
|
||
|
||
# IDE
|
||
.idea/
|
||
.vscode/
|
||
*.swp
|
||
*.swo
|
||
*~
|
||
|
||
# Testing
|
||
.pytest_cache/
|
||
.coverage
|
||
htmlcov/
|
||
.tox/
|
||
|
||
# Logs
|
||
logs/
|
||
*.log
|
||
|
||
# Database
|
||
*.db
|
||
*.sqlite
|
||
|
||
# OS
|
||
.DS_Store
|
||
Thumbs.db
|
||
|
||
# Git
|
||
.git/
|
||
.gitignore
|
||
|
||
# Project specific
|
||
storage/
|
||
temp/
|
||
data/
|
||
|
||
# Environment(避免把本地数据库/Redis 配置和明文密码打进镜像)
|
||
.env
|
||
.env.*
|