Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 2 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,8 @@
WHartTest 是一个基于 Django REST Framework 构建的AI驱动测试自动化平台,核心功能是通过AI智能生成测试用例。平台集成了 LangChain、MCP(Model Context Protocol)工具调用、项目管理、需求评审、测试用例管理以及先进的知识库管理和文档理解功能。利用大语言模型和HuggingFace嵌入模型的能力,自动化生成高质量的测试用例,并结合知识库提供更精准的测试辅助,为测试团队提供一个完整的智能测试管理解决方案。


## 🚀 快速部署



### 1. 后端部署文档
[后端部署文档](./WHartTest_Django/README.md)
### 2. 前端部署
[前端部署文档](./WHartTest_Vue/README.md)
### 3. MCP 部署
[MCP 部署文档](./WHartTest_MCP/README.md)
### 4.访问地址
默认地址:http://localhost:5173/
默认账户:admin
默认密码:123456
## 文档
详细文档请访问:https://mgdaaslab.github.io/WHartTest/

## 页面展示

Expand Down
15 changes: 0 additions & 15 deletions docs/.vitepress/config.js

This file was deleted.

112 changes: 112 additions & 0 deletions docs/.vitepress/config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
import { defineConfig } from 'vitepress'

// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "WHartTest",
description: "WHartTest 是一个基于 Django REST Framework 构建的AI驱动测试自动化平台,核心功能是通过AI智能生成测试用例。平台集成了 LangGraph、MCP(Model Context Protocol)工具调用、项目管理、需求评审、测试用例管理以及先进的知识库管理和文档理解功能。利用大语言模型和HuggingFace嵌入模型的能力,自动化生成高质量的测试用例,并结合知识库提供更精准的测试辅助,为测试团队提供一个完整的智能测试管理解决方案.",
lastUpdated: true,
cleanUrls: true,
base: '/WHartTest/',
head: [
['meta', { name: 'keywords', content: 'WHartTest, 测试自动化, AI 测试, 知识库, LangChain, LangGraph, MCP, Django, Vue, VitePress' }],
['meta', { property: 'og:title', content: 'WHartTest 文档' }],
['meta', { name: 'keywords', content: 'WHartTest, 测试自动化, AI 测试, 知识库, LangChain, LangGraph, MCP, Django, Vue, VitePress' }],
['meta', { property: 'og:title', content: 'WHartTest 文档' }],
['meta', { property: 'og:description', content: 'AI驱动的智能测试自动化平台,集成知识库、LangGraph、MCP 工具与项目/用例/需求管理' }],
['style', {}, `
:root {
--vp-c-brand-1: #00a0e9;
--vp-c-brand-2: #1aaaeb;
--vp-c-brand-3: #0090d1;
--vp-button-brand-bg: linear-gradient(135deg, #00a0e9 0%, #1aaaeb 100%);
--vp-button-brand-hover-bg: linear-gradient(135deg, #0090d1 0%, #00a0e9 100%);
--vp-button-brand-text: #ffffff;
}

.VPButton.brand {
background: linear-gradient(135deg, #00a0e9 0%, #1aaaeb 100%) !important;
border: 1px solid #00a0e9 !important;
color: white !important;
}

.VPButton.brand:hover {
background: linear-gradient(135deg, #0090d1 0%, #00a0e9 100%) !important;
border: 1px solid #0090d1 !important;
}
`]
],
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
logo: '/img/WHartTest.png',

nav: [
{ text: '首页', link: '/' },
{ text: '项目介绍', link: '/project-introduction' },
{ text: '未来规划', link: '/future-planning' },
{ text: '快速上手', link: '/quick-start/django-deployment' },
{ text: 'API文档', link: '/api/knowledge-api' },
{ text: '开发指南', link: '/developer-guide/contributing' }
],

sidebar: {
'/quick-start/': [
{
text: '快速上手',
items: [
{ text: '后端部署 (Django)', link: '/quick-start/django-deployment' },
{ text: '前端部署 (Vue)', link: '/quick-start/vue-deployment' },
{ text: 'MCP 工具部署', link: '/quick-start/mcp-deployment' }
]
}
],
'/api/': [
{
text: 'API 文档',
items: [
{ text: '知识库 API', link: '/api/knowledge-api' },
{ text: '提示词 API', link: '/api/prompt-api' },
{ text: '需求 API', link: '/api/requirements-api' }
]
}
],
'/developer-guide/': [
{
text: '开发指南',
items: [
{ text: '贡献指南', link: '/developer-guide/contributing' },
{ text: '集成指南', link: '/developer-guide/integration-guide' }
]
}
],
'/': [
{
text: '介绍',
items: [
{ text: '项目介绍', link: '/project-introduction' },
{ text: '未来规划', link: '/future-planning' },
{ text: '许可证', link: '/license' }
]
},
{
text: '架构概览',
items: [
{ text: '前端', link: '/core-concepts/frontend-architecture' },
{ text: '后端', link: '/core-concepts/permission-system' }
]
},
{
text: '组件依赖',
items: [
{ text: '前端', link: '/core-concepts/frontend-dependencies' },
{ text: '后端', link: '/core-concepts/backend-dependencies' }
]
}
]
},

// 如需展示仓库链接,请在此处配置你们的仓库地址
socialLinks: [
{ icon: 'github', link: 'https://github.com/MGdaasLab/WHartTest' }
]
}
})