MarketingSystemDataTool/README.md

45 lines
803 B
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.

# MarketingSystemDataTool
营销系统、易码通数据工具
## 服务启动方式
### 后端服务
1. **编译服务**(如未编译):
```bash
cd server
go build -o server ./cmd/server/main.go
```
2. **启动服务**
```bash
cd server
./server
```
3. **服务配置**
- 配置文件:`server/config.yaml`
- 默认端口8077
- 可通过环境变量覆盖配置
### 前端访问
服务启动后,通过浏览器访问:
```
http://localhost:8077
```
## 技术栈
- 后端Go 1.21
- 前端Vue 3 + Element Plus通过 CDN 引入)
- 数据库MySQL
- 导出格式CSV、Excel
## 项目结构
- `server/`Go 服务端代码
- `web/`:前端页面与静态资源
- `config/`:非敏感配置
- `scripts/`:开发与运维脚本