# aiedu **Repository Path**: yunwolf/aiedu ## Basic Information - **Project Name**: aiedu - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-01 - **Last Updated**: 2026-01-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 快速开始 ### 环境要求 - JDK 17+ - Maven 3.6+ - MySQL 8.0+ - Redis 6.0+ - MongoDB 4.4+ - Flutter 3.0+(移动端开发) ### 安装步骤 #### 1. 克隆仓库 ```bash git clone https://github.com/your-username/aiedu.git cd aiedu ``` #### 2. 配置数据库 - 创建MySQL数据库:aiedu - 导入数据库脚本(待提供) - 配置Redis和MongoDB #### 3. 修改配置文件 ```yaml # src/main/resources/application.yaml spring: datasource: url: jdbc:mysql://localhost:3306/aiedu?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai username: root password: 123456 redis: host: localhost port: 6379 data: mongodb: uri: mongodb://localhost:27017/aiedu ``` #### 4. 构建项目 ```bash mvn clean install ``` #### 5. 启动服务端 ```bash mvn spring-boot:run ``` #### 6. 启动移动端 ```bash # 讲师端 cd mobile/teacher flutter run # 学生端 cd mobile/student flutter run ``` ## 项目结构