# 日志文件 logs/ *.log # 患者数据文件 data/patients/*/ !data/patients/.gitkeep # Node.js 依赖 frontend/src/renderer/node_modules/ # Python 缓存文件 __pycache__/ *.pyc *.pyo *.pyd # Python 虚拟环境 venv/ env/ .venv/ .env/ # 数据库文件(如果不需要版本控制) *.db *.sqlite *.sqlite3 # 环境配置文件 .env .env.local # IDE 文件 .vscode/settings.json .idea/ # 系统文件 .DS_Store Thumbs.db # 构建输出 dist/ build/ # 临时文件 *.tmp *.temp