https://github.com/jevonsflash/matoapp-samples
matoapp网站示例集合
https://github.com/jevonsflash/matoapp-samples
sample-code samples
Last synced: 9 months ago
JSON representation
matoapp网站示例集合
- Host: GitHub
- URL: https://github.com/jevonsflash/matoapp-samples
- Owner: jevonsflash
- Created: 2022-10-26T08:15:48.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-27T09:23:31.000Z (almost 3 years ago)
- Last Synced: 2025-04-19T06:06:42.557Z (about 1 year ago)
- Topics: sample-code, samples
- Language: C#
- Homepage:
- Size: 2.39 MB
- Stars: 9
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# matoapp-samples Abp示例集
## 1. sms-auth-sample

搭建一套集成手机号免密登录验证与号码绑定功能的用户系统
### 技术博客
这是一篇系列博文,我将使用Abp.Zero搭建一套集成手机号免密登录验证与号码绑定功能的用户系统:
* [ 用Abp实现短信验证码免密登录(一):短信校验模块](https://blog.csdn.net/jevonsflash/article/details/127538020)
* [ 用Abp实现短信验证码免密登录(二):改造Abp默认实现](https://blog.csdn.net/jevonsflash/article/details/127576427)
* [ 用Abp实现短信验证码免密登录(三):Vue网页端开发](https://blog.csdn.net/jevonsflash/article/details/127576964)
## 2. reset-password-sample

实现重置密码,找回密码,以及密码强制过期策略
### 技术博客
* [用Abp实现找回密码和密码强制过期策略](https://blog.csdn.net/jevonsflash/article/details/130148799)
## 3. two-factor-auth-sample

两步验证,又称双重验证或双因素认证(Two-Factor Authentication,简称 2FA),本文称为“双因素认证”,它是使用两个或多个因素的任意组合来验证用户身份,例如用户提供密码后,还要提供短消息发送的验证码,以证明用户确实拥有该手机。
### 技术博客
* [用Abp实现两步验证(Two-Factor Authentication,2FA)登录(一):认证模块](https://blog.csdn.net/jevonsflash/article/details/130018241)
* [用Abp实现两步验证(Two-Factor Authentication,2FA)登录(二):Vue网页端开发](https://blog.csdn.net/jevonsflash/article/details/130101279)
* [用Abp实现两步验证(Two-Factor Authentication,2FA)登录(三):免登录验证](https://blog.csdn.net/jevonsflash/article/details/130103878)
## 4. im-rocketchat-sample

使用 RocketChat 免费,开源的聊天组件,集成到既有的项目中
### 技术博客
* [集成RocketChat至现有的.Net项目中,为ChatGPT铺路](https://blog.csdn.net/jevonsflash/article/details/128678241)
## 在线Demo
https://www.matoapp.net:3009/
## 本地运行
### api:
后端程序,使用.Net 7项目框架搭建,运行前请确保安装.net 7 运行时https://dotnet.microsoft.com/en-us/download/dotnet/7.0
```
cd api
```
```
dotnet run
```
### web:
前端程序
```
cd web
```
```
yarn install
```
```
yarn serve
```