{"id":13796002,"url":"https://github.com/HeavyHorst/remco","last_synced_at":"2025-05-13T00:30:36.574Z","repository":{"id":11095426,"uuid":"61652574","full_name":"HeavyHorst/remco","owner":"HeavyHorst","description":"remco is a lightweight configuration management tool","archived":false,"fork":false,"pushed_at":"2024-02-01T07:00:19.000Z","size":26090,"stargazers_count":321,"open_issues_count":15,"forks_count":36,"subscribers_count":14,"default_branch":"master","last_synced_at":"2024-08-04T23:10:06.134Z","etag":null,"topics":["confd","config","consul","etcd","remote","template"],"latest_commit_sha":null,"homepage":"https://heavyhorst.github.io/remco/","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/HeavyHorst.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING","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":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-06-21T17:14:49.000Z","updated_at":"2024-08-01T07:57:00.000Z","dependencies_parsed_at":"2024-01-15T10:49:04.247Z","dependency_job_id":"39633df5-a2dd-4c51-8af7-cc7b9fb31cfd","html_url":"https://github.com/HeavyHorst/remco","commit_stats":null,"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeavyHorst%2Fremco","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeavyHorst%2Fremco/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeavyHorst%2Fremco/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeavyHorst%2Fremco/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HeavyHorst","download_url":"https://codeload.github.com/HeavyHorst/remco/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225159843,"owners_count":17430190,"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":["confd","config","consul","etcd","remote","template"],"created_at":"2024-08-03T23:01:05.019Z","updated_at":"2024-11-18T10:30:59.766Z","avatar_url":"https://github.com/HeavyHorst.png","language":"Go","readme":"[![Build Status](https://travis-ci.org/HeavyHorst/remco.svg?branch=master)](https://travis-ci.org/HeavyHorst/remco) [![Go Report Card](https://goreportcard.com/badge/github.com/HeavyHorst/remco)](https://goreportcard.com/report/github.com/HeavyHorst/remco) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/HeavyHorst/remco/master/LICENSE)\n\n# Remco\n\nremco is a lightweight configuration management tool. It's highly influenced by [confd](https://github.com/kelseyhightower/confd).\nRemcos main purposes are (like confd's):\n\n  - keeping local configuration files up-to-date using data stored in a key/value store like etcd or consul and processing template resources.\n  - reloading applications to pick up new config file changes\n\n## Differences between remco and confd\n\n   - Multiple source/destination pairs per template resource - useful for programs that need more than one config file\n   - Multiple backends per template resource - get normal config values from etcd and secrets from vault\n   - [Pongo2](https://github.com/flosch/pongo2) template engine instead of go's text/template\n   - Zombie reaping support (if remco runs as pid 1)\n   - Additional backends can be provided as plugins.\n   - Create your own custom template filters easily with JavaScript.\n   - [Exec](https://heavyhorst.github.io/remco/details/exec-mode/) mode similar to consul-template.\n\n## Overview\n\n![remco overview](https://cdn.rawgit.com/HeavyHorst/remco/master/docs/images/Remco-overview.svg)\n\n## Documentation\n\nSee: https://heavyhorst.github.io/remco/\n\n## Installation\n### Building from source\n\n```shell\n$ go get github.com/HeavyHorst/remco/cmd/remco\n$ go install github.com/HeavyHorst/remco/cmd/remco\n```\n\nYou should now have `remco` in your `$GOPATH/bin` directory\n\n### Building from the repository\n\n```shell\n$ git clone https://github.com/HeavyHorst/remco\n$ cd remco\n$ make\n$ ls bin/\nremco\n```\n\n### Building a given release\n\n```shell\n$ export VERSION=v0.12.2\n$ git checkout ${VERSION}\n$ make release -j\n$ ls bin/\nremco_0.12.2_darwin_amd64.zip  remco_0.12.2_linux_amd64.zip  remco_0.12.2_windows_amd64.zip  remco_darwin  remco_linux  remco_windows\n```\n\n### Using a pre-built release\n\nDownload the releases and extract the binary.\n\n```shell\n$ REMCO_VER=0.12.2\n$ wget https://github.com/HeavyHorst/remco/releases/download/v${REMCO_VER}/remco_${REMCO_VER}_linux_amd64.zip\n$ unzip remco_${REMCO_VER}_linux_amd64.zip\n```\n\nOptionally move the binary to your PATH\n\n```shell\n$ mv remco_linux /usr/local/bin/remco\n```\n\nNow you can run the remco command!\n\n## Execution\n\nrun remco from local dir, configuration is read as default from `/etc/remco/config`\n\nCommand line params:\n\n| parameter | description |\n| --- | --- |\n| -config \u003cfile\u003e | path to the configuration file |\n| -onetime | flag to one run templating once, overriding \"Onetime\" flag for all backend resources |\n| -version | print version and exit |\n\n## Contributing\n\nSee [Contributing](https://github.com/HeavyHorst/remco/blob/master/CONTRIBUTING) for details on submitting patches.\n","funding_links":[],"categories":["Go","Templating and configuration management"],"sub_categories":["Observability"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHeavyHorst%2Fremco","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FHeavyHorst%2Fremco","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHeavyHorst%2Fremco/lists"}