|
1 |
| -#CRUD RESTful API with Golang + MongoDB + Redis + Gin Gonic |
| 1 | +#Build Golang gRPC Server and Client: SignUp User & Verify Email |
| 2 | + |
| 3 | +In this article, you'll learn how to create a gRPC server to register a user and verify their email address using Golang, MongoDB-Go-driver, Gomail, and Docker-compose. |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | +##Topics Covered |
| 8 | + |
| 9 | +- gRPC Project setup in Golang |
| 10 | +- Create the gRPC Request and Response Messages |
| 11 | +- Define the gRPC User messages |
| 12 | +- Define the gRPC Request and Response Message to SignUp User |
| 13 | +- Create the gRPC Service Methods |
| 14 | +- Generate the gRPC client and server interfaces |
| 15 | +- Start the gRPC Server |
| 16 | +- Test the gRPC API Server with Golang Evans |
| 17 | +- Create the gRPC API Controllers |
| 18 | +- Register User gRPC Controller |
| 19 | +- Verify User gRPC Controller |
| 20 | +- Create the gRPC Client to Register a User |
| 21 | + |
| 22 | +Read the entire article here:[https://codevoweb.com/golang-grpc-server-and-client-signup-user-verify-email](https://codevoweb.com/golang-grpc-server-and-client-signup-user-verify-email) |
| 23 | + |
| 24 | +Articles in this series: |
2 | 25 |
|
3 | 26 | ###1. API with Golang + MongoDB + Redis + Gin Gonic: Project Setup
|
4 | 27 |
|
|