MistralApp / .gitignore
chenzerong
add flask
8ff3f24
raw
history blame contribute delete
414 Bytes
# 环境变量
.env
# 上传的文件
static/uploads/
!static/uploads/.gitkeep
# 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/
venv/
ENV/
env/
# IDE 文件
.idea/
.vscode/
*.swp
*.swo
# Docker 相关
.dockerignore
# 其他
.DS_Store
Thumbs.db