{"id":37092215,"url":"https://github.com/kylemcc/consul","last_synced_at":"2026-01-14T11:13:42.773Z","repository":{"id":9897027,"uuid":"56809008","full_name":"kylemcc/consul","owner":"kylemcc","description":"Consul is a tool for service discovery, monitoring and configuration.","archived":false,"fork":true,"pushed_at":"2023-04-12T07:52:29.000Z","size":15463,"stargazers_count":1,"open_issues_count":4,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-06-19T19:44:55.184Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.consul.io/","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"hashicorp/consul","license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kylemcc.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2016-04-21T22:18:37.000Z","updated_at":"2024-06-19T19:44:55.185Z","dependencies_parsed_at":"2023-02-10T22:01:43.946Z","dependency_job_id":null,"html_url":"https://github.com/kylemcc/consul","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/kylemcc/consul","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylemcc%2Fconsul","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylemcc%2Fconsul/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylemcc%2Fconsul/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylemcc%2Fconsul/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kylemcc","download_url":"https://codeload.github.com/kylemcc/consul/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylemcc%2Fconsul/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28418017,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:47:48.104Z","status":"ssl_error","status_checked_at":"2026-01-14T10:46:19.031Z","response_time":107,"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":[],"created_at":"2026-01-14T11:13:39.430Z","updated_at":"2026-01-14T11:13:42.766Z","avatar_url":"https://github.com/kylemcc.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Consul [![Build Status](https://travis-ci.org/hashicorp/consul.png)](https://travis-ci.org/hashicorp/consul) [![Join the chat at https://gitter.im/hashicorp-consul/Lobby](https://badges.gitter.im/hashicorp-consul/Lobby.svg)](https://gitter.im/hashicorp-consul/Lobby?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n* Website: https://www.consul.io\n* Chat: [Gitter](https://gitter.im/hashicorp-consul/Lobby)\n* Mailing list: [Google Groups](https://groups.google.com/group/consul-tool/)\n\nConsul is a tool for service discovery and configuration. Consul is\ndistributed, highly available, and extremely scalable.\n\nConsul provides several key features:\n\n* **Service Discovery** - Consul makes it simple for services to register\n  themselves and to discover other services via a DNS or HTTP interface.\n  External services such as SaaS providers can be registered as well.\n\n* **Health Checking** - Health Checking enables Consul to quickly alert\n  operators about any issues in a cluster. The integration with service\n  discovery prevents routing traffic to unhealthy hosts and enables service\n  level circuit breakers.\n\n* **Key/Value Storage** - A flexible key/value store enables storing\n  dynamic configuration, feature flagging, coordination, leader election and\n  more. The simple HTTP API makes it easy to use anywhere.\n\n* **Multi-Datacenter** - Consul is built to be datacenter aware, and can\n  support any number of regions without complex configuration.\n\nConsul runs on Linux, Mac OS X, FreeBSD, Solaris, and Windows.\n\n## Quick Start\n\nAn extensive quick start is viewable on the Consul website:\n\nhttps://www.consul.io/intro/getting-started/install.html\n\n## Documentation\n\nFull, comprehensive documentation is viewable on the Consul website:\n\nhttps://www.consul.io/docs\n\n## Developing Consul\n\nIf you wish to work on Consul itself, you'll first need [Go](https://golang.org)\ninstalled (version 1.6+ is _required_). Make sure you have Go properly installed,\nincluding setting up your [GOPATH](https://golang.org/doc/code.html#GOPATH).\n\nNext, clone this repository into `$GOPATH/src/github.com/hashicorp/consul` and\nthen just type `make`. In a few moments, you'll have a working `consul` executable:\n\n```\n$ make\n...\n$ bin/consul\n...\n```\n\n*Note: `make` will also place a copy of the binary in the first part of your `$GOPATH`.*\n\nYou can run tests by typing `make test`.\n\nIf you make any changes to the code, run `make format` in order to automatically\nformat the code according to Go standards.\n\n### Building Consul on Windows\n\nMake sure Go 1.6+ is installed on your system and that the Go command is in your\n%PATH%.\n\nFor building Consul on Windows, you also need to have MinGW installed.\n[TDM-GCC](http://tdm-gcc.tdragon.net/) is a simple bundle installer which has all\nthe required tools for building Consul with MinGW.\n\nInstall TDM-GCC and make sure it has been added to your %PATH%.\n\nIf all goes well, you should be able to build Consul by running `make.bat` from a\ncommand prompt.\n\nSee also [golang/winstrap](https://github.com/golang/winstrap) and\n[golang/wiki/WindowsBuild](https://github.com/golang/go/wiki/WindowsBuild)\nfor more information of how to set up a general Go build environment on Windows\nwith MinGW.\n\n## Vendoring\n\nConsul currently uses [govendor](https://github.com/kardianos/govendor) for\nvendoring.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkylemcc%2Fconsul","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkylemcc%2Fconsul","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkylemcc%2Fconsul/lists"}