- Add 3 schedule tools (create/list/delete) and 5 utility tools (crypto, random, email, URL, regex) - Add frontend AgentSchedules.vue page with full CRUD, cron presets, manual trigger - Integrate Celery Beat for automatic schedule execution - Update startup scripts with Celery Beat launch - Fix schedule list API to show all schedules for admin users - Add celrybeat-schedule.* to .gitignore Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
39 lines
490 B
Plaintext
39 lines
490 B
Plaintext
# 环境变量
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 日志
|
|
*.log
|
|
logs/
|
|
|
|
# 操作系统
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 本地 Redis Windows 分发(勿提交二进制)
|
|
redis_temp/
|
|
|
|
# Tesseract 本机目录(语言包/安装包体积大,本机自备)
|
|
tessdata/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Celery Beat 运行时文件
|
|
celerybeat-schedule.*
|
|
|
|
# 本机运行产物 / 大文件(勿提交)
|
|
agent_workspaces/
|
|
uploads/
|
|
backend/redis/
|
|
backend/redis.zip
|
|
*.msi
|