{"id":21036485,"url":"https://github.com/moemoe89/go-grpc-client-ririk","last_synced_at":"2026-05-07T01:09:06.145Z","repository":{"id":57693556,"uuid":"252222443","full_name":"moemoe89/go-grpc-client-ririk","owner":"moemoe89","description":"👵 This repo for practicing gRPC client using Golang, Docker, Travis CI and CodeCov","archived":false,"fork":false,"pushed_at":"2020-06-14T16:14:50.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-20T16:18:13.218Z","etag":null,"topics":["client","codecov","docker","go","golang","grpc","travis-ci"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/moemoe89.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-01T16:00:46.000Z","updated_at":"2023-07-14T10:02:15.000Z","dependencies_parsed_at":"2022-09-26T16:40:34.822Z","dependency_job_id":null,"html_url":"https://github.com/moemoe89/go-grpc-client-ririk","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moemoe89%2Fgo-grpc-client-ririk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moemoe89%2Fgo-grpc-client-ririk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moemoe89%2Fgo-grpc-client-ririk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moemoe89%2Fgo-grpc-client-ririk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moemoe89","download_url":"https://codeload.github.com/moemoe89/go-grpc-client-ririk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243476690,"owners_count":20296930,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["client","codecov","docker","go","golang","grpc","travis-ci"],"created_at":"2024-11-19T13:20:16.462Z","updated_at":"2026-05-07T01:09:01.121Z","avatar_url":"https://github.com/moemoe89.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/moemoe89/go-grpc-client-ririk.svg?branch=master)](https://travis-ci.org/moemoe89/go-grpc-client-ririk)\n[![codecov](https://codecov.io/gh/moemoe89/go-grpc-client-ririk/branch/master/graph/badge.svg)](https://codecov.io/gh/moemoe89/go-grpc-client-ririk)\n[![Go Report Card](https://goreportcard.com/badge/github.com/moemoe89/go-grpc-client-ririk)](https://goreportcard.com/report/github.com/moemoe89/go-grpc-client-ririk)\n\n# GO-GRPC-CLIENT-RIRIK #\n\nPracticing GRPC Client using Golang as Programming Language. This is client implementation from [https://github.com/moemoe89/go-grpc-server-tisa](https://github.com/moemoe89/go-grpc-server-tisa) \n\n## Directory structure\nYour project directory structure should look like this\n```\n  + your_gopath/\n  |\n  +--+ src/github.com/moemoe89\n  |  |\n  |  +--+ go-grpc-client-ririk/\n  |     |\n  |     +--+ main.go\n  |        + api/\n  |        + routers/\n  |        + ... any other source code\n  |\n  +--+ bin/\n  |  |\n  |  +-- ... executable file\n  |\n  +--+ pkg/\n     |\n     +-- ... all dependency_library required\n\n```\n\n## Setup and Build\n\n* Setup Golang \u003chttps://golang.org/\u003e\n* Under `$GOPATH`, do the following command :\n```\n$ mkdir -p src/github.com/moemoe89\n$ cd src/github.com/moemoe89\n$ git clone \u003curl\u003e\n$ mv \u003ccloned directory\u003e go-grpc-client-ririk\n```\n\n## Running Application with Makefile\nMake config file for local :\n```\n$ cp config-sample.json config-local.json\n```\nBuild\n```\n$ cd $GOPATH/src/github.com/moemoe89/go-grpc-client-ririk\n$ make build\n```\nRun\n```\n$ cd $GOPATH/src/github.com/moemoe89/go-grpc-client-ririk\n$ make run\n```\nStop\n```\n$ cd $GOPATH/src/github.com/moemoe89/go-grpc-client-ririk\n$ make stop\n```\nMake config file for docker :\n```\n$ cp config-sample.json config-docker.json\n```\nDocker Build\n```\n$ cd $GOPATH/src/github.com/moemoe89/go-grpc-client-ririk\n$ make docker-build\n```\nDocker Up\n```\n$ cd $GOPATH/src/github.com/moemoe89/go-grpc-client-ririk\n$ make docker-up\n```\nDocker Down\n```\n$ cd $GOPATH/src/github.com/moemoe89/go-grpc-client-ririk\n$ make docker-down\n```\n\n## How to Run with Docker\nMake config file for docker :\n```\n$ cp config-sample.json config.json\n```\nBuild\n```\n$ docker-compose build\n```\nRun\n```\n$ docker-compose up\n```\nStop\n```\n$ docker-compose down\n```\n\n## Reference\n\nThanks to this medium [link](https://toolbox.kurio.co.id/implementing-grpc-service-in-golang-afb9e05c0064) for sharing the great article\n\n## License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoemoe89%2Fgo-grpc-client-ririk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoemoe89%2Fgo-grpc-client-ririk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoemoe89%2Fgo-grpc-client-ririk/lists"}