Files
ssq-desk/README.md
2026-01-14 14:17:38 +08:00

65 lines
1.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ssq-desk
双色球桌面查询应用,基于 Wails + Vue 3 + Arco Design 开发。
## 技术栈
- **前端**Vue 3 + Arco Design + TypeScript
- **后端**Go + Wails
- **数据**MySQL远程+ SQLite本地缓存
## 开发
### 前置要求
- Go 1.23+
- Node.js 18+
- Wails CLI v2.11.0+
### 安装依赖
```bash
# Go 依赖
go mod download
# 前端依赖
cd web
npm install
```
### 开发运行
```bash
wails dev
```
### 构建
```bash
wails build
```
## 项目结构
```
ssq-desk/
├─ app.go # Wails 应用结构
├─ main.go # 应用入口
├─ internal/ # 内部包
│ ├─ api/ # API 层
│ ├─ service/ # 业务逻辑层
│ ├─ storage/ # 存储层
│ └─ database/ # 数据库连接
├─ web/ # 前端目录
└─ docs/ # 文档目录
```
## 文档
详细文档请查看 [docs](./docs/) 目录。
---
> 项目维护者JueChen
> 创建时间2026-01-07