https://github.com/meateam/download-service
download-service from s3
https://github.com/meateam/download-service
golang grpc-go grpc-server protobuf
Last synced: 4 months ago
JSON representation
download-service from s3
- Host: GitHub
- URL: https://github.com/meateam/download-service
- Owner: meateam
- License: apache-2.0
- Created: 2019-03-27T07:44:48.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-02-14T15:17:38.000Z (over 5 years ago)
- Last Synced: 2025-08-13T17:16:29.212Z (10 months ago)
- Topics: golang, grpc-go, grpc-server, protobuf
- Language: Go
- Size: 174 KB
- Stars: 7
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Download-Service
[](https://goreportcard.com/report/github.com/meateam/download-service)
[](https://godoc.org/github.com/meateam/download-service)
S3 file Download Service
## Compile proto
In order to compile the proto file make sure you have `protobuf` and `protoc-gen-go`
### Installing protobuf on Linux
`./install_protoc.sh`
### Installing protoc-gen-go
`go get -u github.com/golang/protobuf/protoc-gen-go`
[example guide to gRPC and protobuf](https://grpc.io/docs/quickstart/go.html)
**Compiling Protobuf To Golang:**
`protoc -I proto/ proto/download_service.proto --go_out=plugins=grpc:./proto`