{"id":37017107,"url":"https://github.com/touchdown/gyremock","last_synced_at":"2026-01-14T01:57:32.503Z","repository":{"id":41966760,"uuid":"328291989","full_name":"touchdown/gyremock","owner":"touchdown","description":"grpc wrapper for wiremock","archived":false,"fork":false,"pushed_at":"2025-09-09T17:11:33.000Z","size":75,"stargazers_count":2,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-09T19:50:04.125Z","etag":null,"topics":["akka-grpc-e2e","akka-grpc-wiremock","grpc","grpc-e2e-test","grpc-mock","grpc-mocking","grpc-wiremock"],"latest_commit_sha":null,"homepage":"","language":"Scala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/touchdown.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-01-10T03:02:42.000Z","updated_at":"2025-09-09T17:11:20.000Z","dependencies_parsed_at":"2025-09-09T18:18:59.629Z","dependency_job_id":null,"html_url":"https://github.com/touchdown/gyremock","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/touchdown/gyremock","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchdown%2Fgyremock","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchdown%2Fgyremock/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchdown%2Fgyremock/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchdown%2Fgyremock/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/touchdown","download_url":"https://codeload.github.com/touchdown/gyremock/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchdown%2Fgyremock/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408704,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"ssl_error","status_checked_at":"2026-01-14T01:40:32.775Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["akka-grpc-e2e","akka-grpc-wiremock","grpc","grpc-e2e-test","grpc-mock","grpc-mocking","grpc-wiremock"],"created_at":"2026-01-14T01:57:31.940Z","updated_at":"2026-01-14T01:57:32.487Z","avatar_url":"https://github.com/touchdown.png","language":"Scala","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gyremock\ngrpc wrapper for wiremock\n\n## Intro\nThis project aims to introduce a translation layer between grpc and json (wiremock). \nTo do so, it relies on the `codegen` logic in the plugin to\n1. have access to proto files\n2. generate said translation layer for grpc \u003c-\u003e json\n3. generate an aggregate of all the services generated above\n\nThen, the `runtime` library provides the support needed to run the code generated above.\n\nLastly, the end project still need to write a few lines of code to actually run the service to make it useful and provide all the needed wiremock files.\n\n\n## Getting Started\nin your project's `plugins.sbt`\n```sbt\naddSbtPlugin(\"io.github.touchdown\" % \"sbt-gyremock\" % \"\u003cversion\u003e\")\n```\nthen add these lines in your `build.sbt`\n```sbt\nimport gyremock.gen.scaladsl._\n\nCompile / akkaGrpcExtraGenerators := Seq(TranslatorCodeGen, ServicesBuilderCodeGen)\n```\nalong with your usual protoc settings\n\n\nfinally, add a file like this to bootstrap the actual service\n```scala\npackage xyz\n\nimport akka.actor.ActorSystem\nimport io.github.touchdown.gyremock._\n\nobject GyreMockApp {\n\n  def main(args: Array[String]): Unit = {\n    implicit val system: ActorSystem = ActorSystem(\"GyreMockApp\")\n    val settings = GyremockSettings(system.settings.config.getConfig(\"gyremock\"))\n    new GyremockServer(settings, ServicesBuilder.build).run()\n  }\n\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouchdown%2Fgyremock","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftouchdown%2Fgyremock","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouchdown%2Fgyremock/lists"}