feat: init sproutclaw-cron 定时任务管理框架
- 每任务一目录结构,统一开关与日志 - cronctl CLI:enable/disable/toggle/status/run/sync-cron - 公共库 lib/shumengya_cron:runner/manager/notify/ssh - _template 示例任务(hello world + 复制模板) - webui 管理面板:FastAPI 后端 + 文档式响应式前端
This commit is contained in:
29
.gitignore
vendored
Normal file
29
.gitignore
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.egg-info/
|
||||
.venv/
|
||||
venv/
|
||||
|
||||
# 虚拟环境
|
||||
.venv/
|
||||
|
||||
# 运行时产物
|
||||
logs/
|
||||
*.lock
|
||||
*.log
|
||||
|
||||
# 禁用任务目录(含本机专属脚本/凭据,不上传)
|
||||
.disabled/
|
||||
|
||||
# 本地任务运行产物
|
||||
smallmengya-gitea-repo-sync/__pycache__/
|
||||
smallmengya-gitea-repo-sync/logs/
|
||||
smallmengya-gitea-repo-sync/*.lock
|
||||
|
||||
# 编辑器 / IDE / 工具
|
||||
.claude/
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
.DS_Store
|
||||
Reference in New Issue
Block a user