From f537ef2ecef85b20eae0a60781cb5a99f37d0aa2 Mon Sep 17 00:00:00 2001 From: cfdaily Date: Fri, 10 Apr 2026 23:05:02 +0800 Subject: [PATCH] auto-sync: 2026-04-10 23:05:02 --- .../sanguo_auto_sync/ecosystem.config.cjs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 management/sanguo_auto_sync/ecosystem.config.cjs diff --git a/management/sanguo_auto_sync/ecosystem.config.cjs b/management/sanguo_auto_sync/ecosystem.config.cjs new file mode 100644 index 000000000..6fa9e8c29 --- /dev/null +++ b/management/sanguo_auto_sync/ecosystem.config.cjs @@ -0,0 +1,19 @@ +module.exports = { + apps: [ + { + name: 'sanguo-file-watcher', + script: '/Users/chufeng/.openclaw/sanguo_projects/sanguo_quant_live/management/sanguo_auto_sync/file-watcher.sh', + cwd: '/Users/chufeng/.openclaw/sanguo_projects', + exec_mode: 'fork', + instances: 1, + autorestart: true, + watch: false, + max_memory_restart: '100M', + out_file: '/Users/chufeng/.openclaw/sanguo_projects/file-watcher.log', + error_file: '/Users/chufeng/.openclaw/sanguo_projects/file-watcher.log', + log_date_format: 'YYYY-MM-DD HH:mm:ss', + restart_delay: 5000, + max_restarts: 10, + } + ] +};