2023-12-05 09:22:48 +00:00
|
|
|
|
|
2023-12-05 09:23:48 +00:00
|
|
|
|
## 框架介绍
|
2023-12-05 09:22:48 +00:00
|
|
|
|
|
2023-12-05 09:23:48 +00:00
|
|
|
|
零度框架是一款基于微服务和领域模型驱动设计的企业级快速开发框架。该框架构建于微软 .NET 平台,并采用了最新的技术栈,以实现容器化微服务的最佳实践。搭建零度框架的原则是开发简单、多屏体验、前后端分离、灵活部署、最少依赖以及采用最新框架。此外,零度框架还以物联网平台管理系统为业务模型,参考了众多优秀的开源框架,并采用了主流且稳定的技术栈,从而能够从零开始搭建企业级架构。使用零度框架,您可以实现更高效、更灵活的企业应用开发。
|
|
|
|
|
|
|
|
|
|
## 项目预览
|
|
|
|
|
|
2023-12-05 12:53:37 +00:00
|
|
|
|
![框架UI界面](zeroframework-ui-01.jpg)
|
2023-12-05 09:23:48 +00:00
|
|
|
|
|
2023-12-05 12:53:37 +00:00
|
|
|
|
![框架UI界面](zeroframework-ui-02.jpg)
|
2023-12-05 09:23:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## 相关技术
|
2023-12-05 09:22:48 +00:00
|
|
|
|
|
|
|
|
|
后端技术:Visual Studio 2022 + C# 12.0 + .NET 8.0 + ASP.NET Core + EF Core
|
|
|
|
|
|
|
|
|
|
前端技术:Visual Studio Code + Node.js + TypeScript + React + ANTD
|
|
|
|
|
|
2023-12-05 09:23:48 +00:00
|
|
|
|
## 项目演示
|
2023-12-05 09:22:48 +00:00
|
|
|
|
|
|
|
|
|
演示地址:https://cloud.helloworldnet.com
|
2023-12-05 12:56:50 +00:00
|
|
|
|
|
2023-12-05 09:23:48 +00:00
|
|
|
|
用户名: admin
|
2023-12-05 12:56:50 +00:00
|
|
|
|
|
2023-12-05 09:23:48 +00:00
|
|
|
|
密码: guest
|
2023-12-05 09:22:48 +00:00
|
|
|
|
|
2023-12-05 09:23:48 +00:00
|
|
|
|
## 学习教程
|
2023-12-05 09:22:48 +00:00
|
|
|
|
|
2023-12-05 09:23:48 +00:00
|
|
|
|
视频教程:https://www.xcode.me/Training/Module/250
|
2023-12-05 09:22:48 +00:00
|
|
|
|
|
2023-12-05 09:23:48 +00:00
|
|
|
|
零度课堂:https://www.xcode.me
|
2023-12-05 09:22:48 +00:00
|
|
|
|
|
2023-12-05 09:23:48 +00:00
|
|
|
|
## 技术堆栈
|
|
|
|
|
|
2023-12-05 13:01:04 +00:00
|
|
|
|
![技术堆栈](stacks.svg)
|
2023-12-05 09:23:48 +00:00
|
|
|
|
|
|
|
|
|
## 项目部署
|
|
|
|
|
|
|
|
|
|
### 部署 Identity Server 微服务
|
|
|
|
|
|
|
|
|
|
#### 数据库迁移
|
|
|
|
|
|
|
|
|
|
修改 「appsettings.Development.json」中的数据库连接字符串,在 Visual Studio 选择「工具」->「NuGet包管理器」->「程序包管理控制台」执行以下命令。
|
|
|
|
|
|
|
|
|
|
1、删除已有数据库
|
|
|
|
|
|
|
|
|
|
```shell
|
2023-12-05 09:22:48 +00:00
|
|
|
|
|
|
|
|
|
Drop-Database -Context ApplicationDbContext -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API -Confirm:$false
|
|
|
|
|
|
2023-12-05 09:23:48 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
2、删除迁移文件
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
|
2023-12-05 09:22:48 +00:00
|
|
|
|
Remove-Migration -Context PersistedGrantDbContext -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API
|
|
|
|
|
Remove-Migration -Context ConfigurationDbContext -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API
|
|
|
|
|
Remove-Migration -Context ApplicationDbContext -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API
|
2023-12-05 09:23:48 +00:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
3、添加新的迁移文件
|
|
|
|
|
|
|
|
|
|
```shell
|
2023-12-05 09:22:48 +00:00
|
|
|
|
|
|
|
|
|
Add-Migration InitialCreate -c PersistedGrantDbContext -o Migrations/PersistedGrantMigrations -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API
|
|
|
|
|
Add-Migration InitialCreate -c ConfigurationDbContext -o Migrations/ConfigurationMigrations -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API
|
2023-12-05 09:23:48 +00:00
|
|
|
|
Add-Migration InitialCreate -c ApplicationDbContext -o Migrations/ApplicationMigrations -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API![stacks](https://oss.xcode.me/notes/zeroframework/stacks.svg)
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
3、执行迁移并自动生成数据库
|
|
|
|
|
|
|
|
|
|
```shell
|
2023-12-05 09:22:48 +00:00
|
|
|
|
|
|
|
|
|
Update-Database -Context PersistedGrantDbContext -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API
|
|
|
|
|
Update-Database -Context ConfigurationDbContext -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API
|
|
|
|
|
Update-Database -Context ApplicationDbContext -Project ZeroFramework.IdentityServer.API -StartupProject ZeroFramework.IdentityServer.API
|
2023-12-05 09:23:48 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
4、启动 Identity Server 微服务
|
|
|
|
|
|
|
|
|
|
在 Visual Studio 中启动 ZeroFramework.IdentityServer.API 项目,如果启动失败,可尝试重新生成解决方案。
|
|
|
|
|
|
|
|
|
|
### 部署 Device Center 微服务
|
|
|
|
|
|
|
|
|
|
#### 数据库迁移
|
|
|
|
|
|
|
|
|
|
修改 「appsettings.Development.json」中的数据库连接字符串,在 Visual Studio 选择「工具」->「NuGet包管理器」->「程序包管理控制台」执行以下命令。
|
|
|
|
|
|
|
|
|
|
1、删除已有数据库
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
Drop-Database -Context DeviceCenterDbContext -Project ZeroFramework.DeviceCenter.Infrastructure -StartupProject ZeroFramework.DeviceCenter.Infrastructure -Confirm:$false
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
2、删除迁移文件
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
Remove-Migration -Context DeviceCenterDbContext -Project ZeroFramework.DeviceCenter.Infrastructure -StartupProject ZeroFramework.DeviceCenter.Infrastructure
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
3、添加新的迁移文件
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
Add-Migration InitialCreate -Context DeviceCenterDbContext -Project ZeroFramework.DeviceCenter.Infrastructure -StartupProject ZeroFramework.DeviceCenter.Infrastructure
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
4、执行迁移并自动生成数据库
|
|
|
|
|
|
|
|
|
|
```shell
|
2023-12-05 09:22:48 +00:00
|
|
|
|
Update-Database -Context DeviceCenterDbContext -Project ZeroFramework.DeviceCenter.Infrastructure -StartupProject ZeroFramework.DeviceCenter.Infrastructure
|
2023-12-05 09:23:48 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
5、由于该微服务是物联网数据管理平台,设备数据使用分桶模式存储在 MongoDB 数据库中, 因此需要你安装 MongoDB 数据库,并修改 「appsettings.Development.json」中的 MongoDB 连接字符串。
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6、启动 Device Center 微服务
|
|
|
|
|
|
|
|
|
|
在 Visual Studio 中启动 ZeroFramework.DeviceCenter.API 项目,如果启动失败,可尝试重新生成解决方案。
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## 其它服务配置
|
|
|
|
|
|
|
|
|
|
可根据项目情况在 ZeroFramework.ReverseProxy 微服务中自行配置网关和聚合
|
|
|
|
|
|
|
|
|
|
## 前端 React 项目运行
|
|
|
|
|
|
|
|
|
|
### 使用 Visual Studio Code 运行前端项目
|
|
|
|
|
|
|
|
|
|
首先确保系统已安装 Visual Studio Code 工具和 Node.js 环境,并打开 ZeroFramework.DeviceCenter.Web 所在目录。
|
|
|
|
|
|
|
|
|
|
### 安装依赖 Yarn 前端包管理工具
|
|
|
|
|
|
|
|
|
|
在 Visual Studio Code 中打开终端,运行以下命令:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
npm install --global yarn
|
|
|
|
|
````
|
|
|
|
|
### 安装依赖 NPM 包
|
|
|
|
|
在 Visual Studio Code 中打开终端,运行以下命令:
|
|
|
|
|
```shell
|
|
|
|
|
yarn install
|
|
|
|
|
```
|
|
|
|
|
### 启动并运行项目
|
|
|
|
|
|
|
|
|
|
在 Visual Studio Code 中打开终端,运行以下命令:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
npm run dev
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 部署前端项目
|
|
|
|
|
|
|
|
|
|
在 Visual Studio Code 中打开终端,运行以下命令:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
npm run build
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
命令运行成功,生成 DIST 目录,将 DIST 目录下的文件部署到服务器即可。
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## 帮助与反馈
|
2023-12-05 09:22:48 +00:00
|
|
|
|
|
2023-12-05 09:23:48 +00:00
|
|
|
|
遇到任何技术问题可加 QQ 群:18668853 进行交流。
|