# 根目录 monorepo：扫描端 + 执行器

# Python
**/__pycache__/
**/*.py[cod]
**/.venv/
**/venv/
**/*.egg-info/
**/.pytest_cache/

# 本地配置（勿提交密钥）
**/config.yaml
!**/config.example.yaml

# 运行时与数据
**/runtime/*.log
**/runtime/*.db
**/runtime/*.sqlite
**/runtime/*.json
**/runtime/pm2-*.log
**/runtime/backtest_*.csv

# 保留 example 与空目录占位（若有）
!**/runtime/.gitkeep

# IDE / OS
.idea/
.vscode/
*.swp
.DS_Store
Thumbs.db

# 环境变量
.env
.env.*
