{"id":32405428,"url":"https://github.com/lagenorhynque/route-guide","last_synced_at":"2026-04-17T06:31:41.372Z","repository":{"id":79132977,"uuid":"326247030","full_name":"lagenorhynque/route-guide","owner":"lagenorhynque","description":"Route Guide, an example gRPC API based on Protojure, Pedestal \u0026 Duct (ported from https://github.com/grpc/grpc/tree/v1.34.0/examples/python/route_guide)","archived":false,"fork":false,"pushed_at":"2024-01-25T11:12:28.000Z","size":29,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-04-14T07:22:53.004Z","etag":null,"topics":["clojure","duct","grpc","pedestal","protojure"],"latest_commit_sha":null,"homepage":"https://qiita.com/lagenorhynque/items/f285c7e44a7dd72fb2be","language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lagenorhynque.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-01-02T18:34:01.000Z","updated_at":"2024-01-09T09:12:19.000Z","dependencies_parsed_at":"2024-01-25T07:30:29.872Z","dependency_job_id":"8ca80c7a-4c12-4a38-bb90-4c579f19d034","html_url":"https://github.com/lagenorhynque/route-guide","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lagenorhynque/route-guide","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lagenorhynque%2Froute-guide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lagenorhynque%2Froute-guide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lagenorhynque%2Froute-guide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lagenorhynque%2Froute-guide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lagenorhynque","download_url":"https://codeload.github.com/lagenorhynque/route-guide/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lagenorhynque%2Froute-guide/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31918479,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["clojure","duct","grpc","pedestal","protojure"],"created_at":"2025-10-25T12:00:29.376Z","updated_at":"2026-04-17T06:31:41.356Z","avatar_url":"https://github.com/lagenorhynque.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# route-guide\n\n[![CircleCI](https://circleci.com/gh/lagenorhynque/route-guide.svg?style=shield)](https://circleci.com/gh/lagenorhynque/route-guide)\n\nRoute Guide, an example gRPC API based on [Protojure](https://github.com/protojure/lib), [Pedestal](https://github.com/pedestal/pedestal) \u0026 [Duct](https://github.com/duct-framework/duct) (ported from https://github.com/grpc/grpc/tree/v1.34.0/examples/python/route_guide).\n\n## Developing\n\n### Prerequisites\n\n- [Java (JDK)](http://openjdk.java.net/)\n    - `java --version` \u003e= 11\n- [Leiningen](https://leiningen.org/)\n\n### Setup\n\nWhen you first clone this repository, run:\n\n```sh\nlein duct setup\n```\n\nThis will create files for local configuration, and prep your system\nfor the project.\n\n### Development environment\n\nTo begin developing, start with a REPL.\n\n```sh\nlein repl\n```\n\nWith [rebel-readline](https://github.com/bhauman/rebel-readline):\n\n```sh\n$ lein rebel\n```\n\nThen load the development environment.\n\n```clojure\nuser=\u003e (dev)\n:loaded\n```\n\nRun `go` to prep and initiate the system.\n\n```clojure\ndev=\u003e (go)\n:initiated\n```\n\nBy default this creates a web server at \u003chttp://localhost:8080\u003e.\n\nWhen you make changes to your source files, use `reset` to reload any\nmodified files and reset the server.\n\n```clojure\ndev=\u003e (reset)\n:reloading (...)\n:resumed\n```\n\n### Production build \u0026 run\n\n```sh\n$ lein uberjar\n$ java -jar target/route-guide.jar\n```\n\n### Testing\n\nTesting is fastest through the REPL, as you avoid environment startup\ntime.\n\n```clojure\ndev=\u003e (test)\n...\n```\n\nBut you can also run tests through Leiningen.\n\n```sh\nlein test\n```\n\nwith [cloverage](https://github.com/cloverage/cloverage):\n\n```sh\n$ lein test-coverage\n# Open the coverage report\n$ open target/coverage/index.html\n```\n\n### Linting\n\n- [`eastwood`](https://github.com/jonase/eastwood)\n\n```sh\n$ lein lint\n```\n\n- [`cljstyle check`](https://github.com/greglook/cljstyle), [`clj-kondo`](https://github.com/borkdude/clj-kondo), [`joker`](https://github.com/candid82/joker)\n\n```sh\n$ make lint\n```\n\n- fixing formatting\n\n```sh\n$ make cljstyle-fix\n```\n\n### API Documentation ([Codox](https://github.com/weavejester/codox))\n\n```sh\n$ lein codox\n$ open target/codox/index.html\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flagenorhynque%2Froute-guide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flagenorhynque%2Froute-guide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flagenorhynque%2Froute-guide/lists"}