first commit

This commit is contained in:
douboer
2025-10-14 14:18:20 +08:00
commit d93bc02772
66 changed files with 21393 additions and 0 deletions

27
install.sh Executable file
View File

@@ -0,0 +1,27 @@
#!/bin/bash
echo "🚀 开始安装 MCP Vue 客户端项目依赖..."
# 检查 npm 是否可用
if ! command -v npm &> /dev/null; then
echo "❌ npm 未安装,请先安装 Node.js"
exit 1
fi
echo "📦 安装后端依赖..."
cd /Users/gavin/xhs/mcp_client/mcp-client-vue
npm install
echo "📦 安装前端依赖..."
cd web
npm install
echo "✅ 依赖安装完成!"
echo ""
echo "🎯 接下来你可以:"
echo "1. 运行开发服务器: npm run dev"
echo "2. 构建项目: npm run build"
echo "3. 启动生产服务器: npm start"
echo ""
echo "📱 前端地址: http://localhost:5173"
echo "🔧 后端API: http://localhost:3000/api"