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: 21 days 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 (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-04-01T01:37:55.000Z (about 1 month ago)
- Last Synced: 2025-04-03T13:18:00.989Z (about 1 month ago)
- Topics: grpc, grpc-go, udemy
- Language: Go
- Homepage: https://www.udemy.com/course/grpc-golang/?referralCode=EAD42E9AB1C45A5849C5
- Size: 131 KB
- Stars: 229
- Watchers: 5
- Forks: 135
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gRPC Go
[](https://github.com/Clement-Jean/grpc-go-course/actions/workflows/tests.yml) [](https://github.com/Clement-Jean/grpc-go-course/actions/workflows/lint.yml)  
## 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
```