This commit is contained in:
wong
2026-04-09 12:30:38 +08:00
parent 29413f57c7
commit 3bf1b2aee9
3 changed files with 149 additions and 11 deletions

View File

@@ -81,6 +81,17 @@ return [
// 中频任务(每 2-5 分钟)
// ===========================
// 内容库同步
'content_collect' => [
'name' => '同步内容库',
'command' => 'content:collect',
'schedule' => '*/5 * * * *', // 每5分钟
'options' => [],
'enabled' => true,
'max_concurrent' => 1,
'log_file' => 'content_collect.log',
],
// 同步微信设备列表(未删除设备),用于设备管理与监控
'device_active' => [
'name' => '同步微信设备列表(未删除)',
@@ -354,16 +365,6 @@ return [
'log_file' => 'crontab_department.log',
],
// 同步内容库,将外部内容同步到系统内容库
'content_sync' => [
'name' => '同步内容库',
'command' => 'content:sync',
'schedule' => '0 2 * * *', // 每天2点
'options' => [],
'enabled' => true,
'max_concurrent' => 1,
'log_file' => 'crontab_content_sync.log',
],
// 朋友圈采集任务,采集好友朋友圈内容
'moments_collect' => [