Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add readme en/cn doc #7

Merged
merged 1 commit into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
128 changes: 0 additions & 128 deletions CODE_OF_CONDUCT.md

This file was deleted.

55 changes: 0 additions & 55 deletions CONTRIBUTING.md

This file was deleted.

108 changes: 107 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,107 @@
# .github
# Swagger Generate

English | [中文](README_CN.md)

**Swagger Generate** is a collection of plugins that generate Swagger documentation and provide Swagger-UI access for debugging HTTP and RPC services. This project is compatible with the [CloudWeGo](https://www.cloudwego.io) ecosystem frameworks such as [Cwgo](https://github.com/cloudwego/cwgo), [Hertz](https://github.com/cloudwego/hertz), and [Kitex](https://github.com/cloudwego/kitex). It offers a convenient toolset for developers to automatically generate Swagger documentation, simplifying the API documentation and debugging process.

## Included Plugins

- **protoc-gen-http-swagger**: Generates Swagger documentation and provides Swagger UI debugging for HTTP services based on Protobuf.
- **thrift-gen-http-swagger**: Generates Swagger documentation and provides Swagger UI debugging for HTTP services based on Thrift.
- **protoc-gen-rpc-swagger**: Generates Swagger documentation and provides Swagger UI debugging for RPC services based on Protobuf.
- **thrift-gen-rpc-swagger**: Generates Swagger documentation and provides Swagger UI debugging for RPC services based on Thrift.

## Key Advantages

- **Automated Generation**: Supports generating complete Swagger documentation from Protobuf and Thrift files, simplifying API documentation maintenance.
- **Integrated Debugging**: The generated Swagger UI can be used directly for service debugging, supporting both HTTP and RPC modes.
- **Hertz and Kitex Integration**: Provides seamless documentation generation and debugging support for [Hertz](https://github.com/cloudwego/hertz) and [Kitex](https://github.com/cloudwego/kitex).
- **Flexible Annotation Support**: Allows extending the generated Swagger documentation through annotations, supporting OpenAPI annotations such as `openapi.operation`, `openapi.schema`, etc.

## Installation

You can install the plugins using the following methods:

```sh
# Install from the official repository
git clone https://github.com/hertz-contrib/swagger-generate
cd <plugin-directory>
go install

# Direct installation
go install github.com/hertz-contrib/swagger-generate/<plugin-name>@latest
```

## Usage Examples

### Generating HTTP Swagger Documentation

For HTTP services based on Protobuf:

```sh
protoc --http-swagger_out=swagger -I idl hello.proto
```

For HTTP services based on Thrift:

```sh
thriftgo -g go -p http-swagger hello.thrift
```

### Generating RPC Swagger Documentation

For RPC services based on Protobuf:

```sh
protoc --rpc-swagger_out=swagger -I idl idl/hello.proto
```

For RPC services based on Thrift:

```sh
thriftgo -g go -p rpc-swagger hello.thrift
```

### Integrating Swagger-UI in Hertz or Kitex Services

In a Hertz service:

```go
func main() {
h := server.Default()
swagger.BindSwagger(h) // Add this line
register(h)
h.Spin()
}
```
Or:

```go
func register(r *server.Hertz) {
swagger.BindSwagger(r) // Add this line

router.GeneratedRegister(r)

customizedRegister(r)
}
```

In a Kitex service:

```go
func main() {
svr := example.NewServer(new(HelloService1Impl), server.WithTransHandlerFactory(&swagger.MixTransHandlerFactory{})) // Modify this line

err := svr.Run()

if err != nil {
log.Println(err.Error())
}
}
```

For more examples, please refer to [kitex_swagger_gen](https://github.com/cloudwego/kitex-examples/tree/main/bizdemo/kitex_swagger_gen) and [hertz_swagger_gen](https://github.com/cloudwego/hertz-examples/tree/main/bizdemo/hertz_swagger_gen).

## More Information

Refer to the README of each plugin for more detailed usage information.
Loading
Loading