feat 首次提交

This commit is contained in:
耿阳 2022-07-26 14:16:13 +08:00
commit 910a62c5a3
2 changed files with 43 additions and 0 deletions

17
.gitignore vendored Normal file
View File

@ -0,0 +1,17 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
logs.log
.idea

26
README.md Normal file
View File

@ -0,0 +1,26 @@
# 帮助文档
## 一、审批服务
### 部门服务
![image](docs/readmeimage/img_department.png)
### protot文件编译指令
```shell
protoc --go_out=. --go-triple_out=. ./xxxx.proto
```
## 二、测试启动fontree-client
配置文件读取conf/dubbogo.yaml <br>
1、cd cmd <br>
2、 go run .
## 客户端启动http测试(使用gin做一个实现rpc的简单gin)
配置文件读取client/conf/dubbogo.yaml <br>
1、cd client\gin\ <br>
2、go run client.go
postman的接口文档在 docs下postman文件
## 三、上线部署