Skip to content

Commit b807761

Browse files
committedOct 19, 2024
feat: add retrieving student counts
- Added a new RPC in the proto file to fetch the number of students per major based on specified conditions. - Updated the README to explain how to start a dev.
1 parent 603abb8 commit b807761

File tree

6 files changed

+940
-279
lines changed

6 files changed

+940
-279
lines changed
 

‎README.md

+22-6
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@
33
![Goproxy.cn](https://goproxy.cn/stats/github.com/hduhelp/api_open_sdk/badges/download-count.svg)
44
![buf lint](https://github.com/hduhelp/api_open_sdk/actions/workflows/buf.yml/badge.svg)
55

6+
### 配置网络
7+
8+
https://goproxy.cn/
9+
10+
11+
612
## 前置步骤
713

8-
#### linux
14+
### linux
915

1016
```shell
1117
//安装 编译所需的插件
@@ -14,20 +20,30 @@
1420
make install-tools
1521
```
1622

17-
#### windows
23+
### windows
1824

1925
如果使用goland,建议安装插件:buf、Protocol Buffers Support,以消除proto无法识别到的报警。
2026

27+
以下操作,开发前或开发后执行皆可
28+
29+
```
30+
go get github.com/bufbuild/buf/cmd/buf@latest
31+
go get github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway@latest
32+
go get github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2@latest
33+
go get google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
34+
go get google.golang.org/protobuf/cmd/protoc-gen-go@latest
35+
```
36+
37+
然后刷新一下。
38+
2139
```
2240
go mod tidy
2341
buf generate
2442
```
2543

2644

2745

28-
### 配置网络
2946

30-
https://goproxy.cn/
3147

3248
## 依赖
3349

@@ -40,6 +56,8 @@ https://goproxy.cn/
4056
2. 运行 `buf generate`
4157
3. 开启 swagger-ui 实时预览
4258

59+
60+
4361
## 预览 swagger 效果 (多数情况下没必要预览) (感觉还有更简单的)
4462

4563
### 公开文档
@@ -71,8 +89,6 @@ http://localhost:8080/campusapis/staff/v1/freshman.swagger.json
7189

7290
4. 每次改动 proto 后需要重新运行 `buf generate`,并且「清空缓存并进行硬刷新」网页
7391

74-
## Code Lint
75-
7692

7793

7894
## 接口注释

0 commit comments

Comments
 (0)