Files
ProcurementVisibilityHub_Da…/.gitignore
Misaka_Company 5ae7acffde 初始化项目:数据同步服务源码与文档
- src: config_loader / source_watcher / excel_parser / sync_writer / runner
- 169 Excel 全量同步至 114 SQL Server + Access 生产库
- 新增 .gitignore(忽略 venv、日志、数据、含凭据的 config.yaml 等)
- 新增 README.md(用途、安装、配置、运行模式、部署说明)
2026-07-15 14:14:39 +08:00

39 lines
644 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ===== Python 运行时 / 字节码 =====
.venv/
venv/
__pycache__/
*.py[cod]
*$py.class
*.so
# ===== 日志与运行输出 =====
logs/
*.log
# ===== 数据与同步产物(运行时生成,非源码) =====
data/
# ===== 配置(可能含数据库凭据,勿提交;如需共享请改用 config.yaml.example =====
config/config.yaml
# ===== 环境变量 / 密钥 =====
.env
.env.*
*.secret
# ===== 编辑器 / 系统垃圾 =====
.DS_Store
Thumbs.db
.idea/
.vscode/
# ===== 本地 Agent 运行时状态(非项目源码) =====
.claude/
.workbuddy/
# ===== 构建 / 打包产物 =====
build/
dist/
*.egg-info/
.pytest_cache/