65 lines
559 B
Plaintext
65 lines
559 B
Plaintext
# Git相关
|
|
.git
|
|
.gitignore
|
|
|
|
# Python相关
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.log
|
|
.git
|
|
.mypy_cache
|
|
.pytest_cache
|
|
.hypothesis
|
|
|
|
# 开发环境
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 备份和日志
|
|
backups/
|
|
logs/
|
|
*.log
|
|
|
|
# 数据库文件
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# 临时文件
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# 文档
|
|
*.md
|
|
docs/
|
|
|
|
# 测试文件
|
|
test_*
|
|
*_test.py
|
|
tests/
|
|
|
|
# 配置文件(敏感信息)
|
|
.env
|
|
config.local.py
|