refactor: article_processor as external service, disable wechat_qr_notifier
This commit is contained in:
@@ -28,17 +28,17 @@ SERVICES = [
|
||||
},
|
||||
{
|
||||
"name": "article_processor",
|
||||
"script": os.path.join(os.path.dirname(BASE), "self-growing-knowledge",
|
||||
"scripts", "article_processor.py"),
|
||||
"script": None, # 外部服务,由 self-growing-knowledge 项目管理,AgentsMeeting 不再启动
|
||||
"args": [],
|
||||
"workdir": os.path.join(os.path.dirname(BASE), "self-growing-knowledge"),
|
||||
"pid_file": os.path.join(TEMP, ".article_processor.pid"),
|
||||
"workdir": None,
|
||||
"pid_file": None,
|
||||
"port": 5810,
|
||||
"health_url": "http://127.0.0.1:5810/health",
|
||||
"health_url": "http://192.168.1.16:5810/health",
|
||||
"accept_401": False,
|
||||
"depends_on": [],
|
||||
"log_files": lambda: [os.path.join(GATEWAY_DIR, "logs", "article_processor.log")],
|
||||
"description": "微信文章全文抓取服务",
|
||||
"remote": True, # 标记为远程外部服务
|
||||
"log_files": lambda: [],
|
||||
"description": "微信文章全文抓取服务(外部,self-growing-knowledge)",
|
||||
},
|
||||
{
|
||||
"name": "dashboard",
|
||||
|
||||
Reference in New Issue
Block a user