feat: add docker match live stream crawler

This commit is contained in:
hajimi
2026-06-21 12:15:40 +08:00
parent 7ebd563134
commit bc9aef5a2f
5 changed files with 351 additions and 0 deletions
@@ -0,0 +1,20 @@
INSERT INTO `la_dev_crontab`
(`name`, `type`, `system`, `remark`, `command`, `params`, `status`, `expression`, `create_time`, `update_time`)
SELECT
'赛事直播流抓取',
1,
0,
'Docker crawler 每分钟抓取赛事直播线路播放地址',
'crawler',
'match_live_stream',
1,
'* * * * *',
UNIX_TIMESTAMP(),
UNIX_TIMESTAMP()
WHERE NOT EXISTS (
SELECT 1
FROM `la_dev_crontab`
WHERE `command` = 'crawler'
AND `params` = 'match_live_stream'
AND `delete_time` IS NULL
);