Files
yixiaogao/backend/api/start_api.bat

24 lines
540 B
Batchfile
Raw Normal View History

2025-11-27 18:40:08 +08:00
@echo off
chcp 65001 >nul
title 微信公众号文章爬虫 - API服务器
2025-12-02 14:58:52 +08:00
:: 检查api-server.exe是否存在
if not exist "api-server.exe" (
2025-11-27 18:40:08 +08:00
echo ===============================================
echo ⚠️ API服务器未编译
echo ===============================================
echo.
echo 正在编译 API 服务器...
echo.
call build.bat
if %errorlevel% neq 0 (
echo 编译失败,无法启动服务器
pause
exit /b 1
)
)
:: 启动API服务器
cls
2025-12-02 14:58:52 +08:00
api-server.exe