22 lines
357 B
Batchfile
22 lines
357 B
Batchfile
@echo off
|
||
chcp 65001 >nul
|
||
echo 启动AI小红书后端服务(开发环境)...
|
||
|
||
:: 检查go环境
|
||
where go >nul 2>nul
|
||
if %ERRORLEVEL% neq 0 (
|
||
echo 错误: 未检测到Go环境,请先安装Go
|
||
pause
|
||
exit /b 1
|
||
)
|
||
|
||
:: 下载依赖
|
||
echo 下载依赖...
|
||
go mod tidy
|
||
|
||
:: 启动服务
|
||
echo 启动开发环境服务...
|
||
go run main.go -env=dev
|
||
|
||
pause
|