https://github.com/sinisaos/grpc-crud-example
Example crud application with gRPC, Gin and GORM.
https://github.com/sinisaos/grpc-crud-example
gin-gonic golang gorm-orm grpc
Last synced: about 2 months ago
JSON representation
Example crud application with gRPC, Gin and GORM.
- Host: GitHub
- URL: https://github.com/sinisaos/grpc-crud-example
- Owner: sinisaos
- License: mit
- Created: 2022-10-19T06:28:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-14T05:28:11.000Z (over 3 years ago)
- Last Synced: 2025-09-15T00:28:45.274Z (10 months ago)
- Topics: gin-gonic, golang, gorm-orm, grpc
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## How to use:
Start gRPC server
```
$ go run cmd/server/server.go
```
Start gRPC client (Gin web framework)
```
$ go run cmd/client/client.go
```
Use ``curl`` to interact with the client api on address ``http://localhost:8080``.