init: 狐蒂云活动监控项目初始化

This commit is contained in:
ikmkj
2026-03-18 12:16:18 +08:00
commit b0afdbd9a0
20 changed files with 16147 additions and 0 deletions

33
run_checkActivity.bat Normal file
View File

@@ -0,0 +1,33 @@
@echo off
chcp 65001 >nul
title Activity Monitoring Script
echo Starting activity monitoring script...
echo.
REM Switch to the script directory
cd /d "%~dp0"
REM Check if Node.js is installed
node --version >nul 2>&1
if %errorlevel% neq 0 (
echo Error: Node.js not found. Please ensure Node.js is installed and added to PATH.
pause
exit /b 1
)
REM Check if dependencies are installed
if not exist "node_modules" (
echo Dependencies not found, installing...
npm install
if %errorlevel% neq 0 (
echo Failed to install dependencies
pause
exit /b 1
)
)
REM Run the Node.js script
echo Starting activity monitoring...
node checkActivity.js
pause