gitignore

This commit is contained in:
superlishunqin 2025-04-29 11:17:14 +08:00
commit bfe6ec8c6d

56
.gitignore vendored Normal file
View File

@ -0,0 +1,56 @@
# 虚拟环境
venv/
env/
.env/
.venv/
# 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
# 日志文件
logs/
*.log
# 数据库文件
*.db
*.sqlite3
# 本地配置
instance/
.env
.flaskenv
# IDE相关
.idea/
.vscode/
*.swp
*.swo
.DS_Store
# Flask相关
.webassets-cache
# 其他
.coverage
htmlcov/
.pytest_cache/
.tox/