88 lines
781 B
Plaintext
88 lines
781 B
Plaintext
|
|
# Git相关
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
.gitattributes
|
||
|
|
|
||
|
|
# Python相关
|
||
|
|
__pycache__/
|
||
|
|
*.py[cod]
|
||
|
|
*$py.class
|
||
|
|
*.so
|
||
|
|
.Python
|
||
|
|
build/
|
||
|
|
develop-eggs/
|
||
|
|
dist/
|
||
|
|
downloads/
|
||
|
|
eggs/
|
||
|
|
.eggs/
|
||
|
|
lib/
|
||
|
|
lib64/
|
||
|
|
parts/
|
||
|
|
sdist/
|
||
|
|
var/
|
||
|
|
wheels/
|
||
|
|
*.egg-info/
|
||
|
|
.installed.cfg
|
||
|
|
*.egg
|
||
|
|
|
||
|
|
# 虚拟环境
|
||
|
|
venv/
|
||
|
|
env/
|
||
|
|
ENV/
|
||
|
|
env.bak/
|
||
|
|
venv.bak/
|
||
|
|
|
||
|
|
# IDE相关
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
|
||
|
|
# 操作系统相关
|
||
|
|
.DS_Store
|
||
|
|
.DS_Store?
|
||
|
|
._*
|
||
|
|
.Spotlight-V100
|
||
|
|
.Trashes
|
||
|
|
ehthumbs.db
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# 日志文件
|
||
|
|
*.log
|
||
|
|
logs/
|
||
|
|
temp/
|
||
|
|
|
||
|
|
# 数据库文件
|
||
|
|
*.db
|
||
|
|
*.sqlite
|
||
|
|
*.sqlite3
|
||
|
|
|
||
|
|
# 配置文件(敏感信息)
|
||
|
|
.env
|
||
|
|
.env.local
|
||
|
|
.env.production
|
||
|
|
secrets/
|
||
|
|
|
||
|
|
# 测试相关
|
||
|
|
.pytest_cache/
|
||
|
|
.coverage
|
||
|
|
htmlcov/
|
||
|
|
.tox/
|
||
|
|
.cache
|
||
|
|
nosetests.xml
|
||
|
|
coverage.xml
|
||
|
|
*.cover
|
||
|
|
.hypothesis/
|
||
|
|
|
||
|
|
# 文档
|
||
|
|
docs/
|
||
|
|
*.md
|
||
|
|
README*
|
||
|
|
|
||
|
|
# 其他
|
||
|
|
node_modules/
|
||
|
|
npm-debug.log*
|
||
|
|
yarn-debug.log*
|
||
|
|
yarn-error.log*
|