首次上传

This commit is contained in:
dekun
2026-05-16 22:25:48 +08:00
commit 2b8f902548
88 changed files with 16386 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
# 根目录 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.*