Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clement-jean/grpc-go-course
gRPC Go Master Class: Build Modern API & Micro services
https://github.com/clement-jean/grpc-go-course
grpc grpc-go udemy
Last synced: about 11 hours ago
JSON representation
gRPC Go Master Class: Build Modern API & Micro services
- Host: GitHub
- URL: https://github.com/clement-jean/grpc-go-course
- Owner: Clement-Jean
- Created: 2022-02-13T13:19:12.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-01T01:21:00.000Z (22 days ago)
- Last Synced: 2025-01-15T06:57:36.354Z (7 days ago)
- Topics: grpc, grpc-go, udemy
- Language: Go
- Homepage: https://www.udemy.com/course/grpc-golang/?referralCode=EAD42E9AB1C45A5849C5
- Size: 150 KB
- Stars: 219
- Watchers: 5
- Forks: 131
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gRPC Go
[![Go Unit Tests](https://github.com/Clement-Jean/grpc-go-course/actions/workflows/tests.yml/badge.svg)](https://github.com/Clement-Jean/grpc-go-course/actions/workflows/tests.yml) [![Lint protobuf](https://github.com/Clement-Jean/grpc-go-course/actions/workflows/lint.yml/badge.svg)](https://github.com/Clement-Jean/grpc-go-course/actions/workflows/lint.yml) ![cross-platform](https://img.shields.io/badge/Platform-windows%20%7C%20macos%20%7C%20linux-brightgreen) ![Udemy](.github/badges/udemy.svg)
## COUPON: `START_OCT_2025`
## Notes
### `Windows`
- I recommend you use powershell (try to update: [see](https://github.com/PowerShell/PowerShell/releases)) for following this course, you might have unexepected behavior if you use Git bash or other (especially with OpenSSL)
- I recommend you use [Chocolatey](https://chocolatey.org/) as package installer (see [Install](https://chocolatey.org/install))### Build
#### `Linux/MacOS`
```shell
make all
```
***all is a Makefile rule** - check the other [rules](#makefile)#### `Windows - Chocolatey`
```shell
choco install make
make all
```
***all is a Makefile rule** - check the other [rules](#makefile)#### `Windows - Without Chocolatey`
```shell
protoc -Igreet/proto --go_opt=module=github.com/Clement-Jean/grpc-go-course --go_out=. --go-grpc_opt=module=github.com/Clement-Jean/grpc-go-course --go-grpc_out=. greet/proto/*.protoprotoc -Icalculator/proto --go_opt=module=github.com/Clement-Jean/grpc-go-course --go_out=. --go-grpc_opt=module=github.com/Clement-Jean/grpc-go-course --go-grpc_out=. calculator/proto/*.proto
protoc -Iblog/proto --go_opt=module=github.com/Clement-Jean/grpc-go-course --go_out=. --go-grpc_opt=module=github.com/Clement-Jean/grpc-go-course --go-grpc_out=. blog/proto/*.proto
go build -o bin/greet/server.exe ./greet/server
go build -o bin/greet/client.exe ./greet/clientgo build -o bin/calculator/server.exe ./calculator/server
go build -o bin/calculator/client.exe ./calculator/clientgo build -o bin/blog/server.exe ./blog/server
go build -o bin/blog/client.exe ./blog/client
```For more information about what are the rules defined in the Makefile, please type:
```shell
make help
```## Reporting a bug
As I need to know a little bit more information about your environment to help you, when filling an issue, please provide the output of:
```shell
make about
```