包含前端源码、预构建产物(dist/)、零依赖 Node.js 服务器(server.mjs)、 Cloudflare Worker 版本(worker/)、部署文档(DEPLOY.md)和交接文档。 技术总监可直接 clone 后运行 node server.mjs 启动,无需安装 React 或 build。 DEEPSEEK_API_KEY 通过环境变量注入,未纳入仓库。
12 lines
239 B
Batchfile
12 lines
239 B
Batchfile
@echo off
|
|
setlocal
|
|
title Brain H5 Launcher
|
|
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0launch-brain-h5.ps1"
|
|
if errorlevel 1 (
|
|
echo.
|
|
echo Startup failed. Please check the message above.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
exit /b 0
|