Files
yourname cde556863a feat: 添加 AI 智能抽背助手原型系统
- 基于完整 PRD(1082行)和 UX 设计(1094行)生成
- 9 个 HTML 页面(174KB)
- 桌面端管理后台原型(6个管理页面)
- 平铺展示架构:所有页面同时显示在 iframe 网格中
- 使用 Tailwind CSS + Font Awesome
- 包含本地预览服务器(server.js)

页面列表:
- index.html: 统一入口
- admin-index.html: 平铺展示入口
- docs-index.html: 文档中心
- dashboard.html: 数据概览
- quiz-records.html: 抽背记录查询
- student-management.html: 学生管理
- knowledge-management.html: 知识点管理
- task-management.html: 学习任务管理
- settings.html: 系统设置

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-28 15:38:24 +00:00

27 lines
580 B
Bash

#!/bin/bash
# AI 智能抽背助手 - 原型系统启动脚本
#
# 使用方法:
# ./start.sh
#
# @author generate-prototype-grid skill
# @date 2026-03-28
echo "=========================================="
echo " AI 智能抽背助手 - 原型系统启动"
echo "=========================================="
echo ""
echo "正在启动本地预览服务器..."
echo ""
# 检查 Node.js 是否安装
if ! command -v node &> /dev/null; then
echo "错误: 未找到 Node.js"
echo "请先安装 Node.js: https://nodejs.org/"
exit 1
fi
# 启动服务器
node server.js