SAAS/README.md
2025-05-14 00:30:11 +08:00

18 lines
492 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.

# SaaS 多租户管理系统
## 项目概述
本项目是一个基于Next.js的多租户SaaS管理系统支持工作空间、用户和团队的管理采用MySQL作为数据存储。
## 系统架构
### 创建数据库
```
sudo docker run --name my-mysql \
-p 3306:3306 \
-v /vol1/1000/SSD/mysql:/var/lib/mysql \
-e MYSQL_ROOT_PASSWORD=aiwoQwo520.. \
-e MYSQL_DATABASE=myapp \
-e TZ=Asia/Shanghai \
-d mysql:latest \
--default-time-zone='+08:00'