From 910a62c5a3011831e535745978b5104bbbe988b1 Mon Sep 17 00:00:00 2001
From: gy <997485446@qq.com>
Date: Tue, 26 Jul 2022 14:16:13 +0800
Subject: [PATCH] =?UTF-8?q?feat=20=E9=A6=96=E6=AC=A1=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.gitignore | 17 +++++++++++++++++
README.md | 26 ++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
create mode 100644 .gitignore
create mode 100644 README.md
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..405e05a
--- /dev/null
+++ b/.gitignore
@@ -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
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..98b5eab
--- /dev/null
+++ b/README.md
@@ -0,0 +1,26 @@
+# 帮助文档
+
+## 一、审批服务
+
+### 部门服务
+
+
+### protot文件编译指令
+
+```shell
+ protoc --go_out=. --go-triple_out=. ./xxxx.proto
+```
+
+## 二、测试启动fontree-client
+配置文件读取conf/dubbogo.yaml
+1、cd cmd
+2、 go run .
+
+## 客户端启动http测试(使用gin做一个实现rpc的简单gin)
+配置文件读取client/conf/dubbogo.yaml
+1、cd client\gin\
+2、go run client.go
+
+postman的接口文档在 docs下postman文件
+
+## 三、上线部署
\ No newline at end of file