https://github.com/omgzui/umaru-v2ex-forum
V2EX style forum with Umaru theme
https://github.com/omgzui/umaru-v2ex-forum
Last synced: 27 days ago
JSON representation
V2EX style forum with Umaru theme
- Host: GitHub
- URL: https://github.com/omgzui/umaru-v2ex-forum
- Owner: OMGZui
- Created: 2025-07-04T15:15:20.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-07-06T13:28:35.000Z (3 months ago)
- Last Synced: 2025-08-11T09:22:08.238Z (about 2 months ago)
- Language: Java
- Size: 326 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# V2EX Clone - 小埋主题论坛
一个模仿 V2EX 风格的论坛应用,使用 Spring Boot + React 技术栈开发,所有头像都使用了可爱的小埋图片。
## 技术栈
### 后端
- Spring Boot 3.2.0
- Java 21
- Spring Data JPA
- H2 数据库
- Maven### 前端
- React 18
- React Router
- Axios
- 原生 CSS## 快速开始
### 启动后端
```bash
cd backend
mvn spring-boot:run
```### 启动前端
```bash
cd frontend
npm install
npm start
```## 访问地址
- 前端应用: http://localhost:3000
- 后端 API: http://localhost:8080
- H2 数据库控制台: http://localhost:8080/h2-console## 功能特性
- ✅ V2EX 风格的界面设计
- ✅ 主题列表展示
- ✅ 主题详情页面
- ✅ 响应式布局
- ✅ 小埋主题头像
- ✅ 热门节点展示
- ✅ 社区统计信息## 项目结构
```
v2ex-clone/
├── backend/ # Spring Boot 后端
│ ├── src/
│ └── pom.xml
├── frontend/ # React 前端
│ ├── src/
│ └── package.json
└── README.md
```