https://github.com/meateam/upload-service
S3 file Upload Service
https://github.com/meateam/upload-service
golang grpc-go grpc-server protobuf
Last synced: 4 months ago
JSON representation
S3 file Upload Service
- Host: GitHub
- URL: https://github.com/meateam/upload-service
- Owner: meateam
- License: apache-2.0
- Created: 2019-03-10T13:38:26.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-10-20T15:50:08.000Z (over 4 years ago)
- Last Synced: 2024-06-19T05:57:11.102Z (almost 2 years ago)
- Topics: golang, grpc-go, grpc-server, protobuf
- Language: Go
- Size: 6.84 MB
- Stars: 11
- Watchers: 5
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Upload-Service
[](https://goreportcard.com/report/github.com/meateam/upload-service)
[](https://godoc.org/github.com/meateam/upload-service)
S3 file Upload 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/upload_service.proto --go_out=plugins=grpc:./proto`