{"id":15015978,"url":"https://github.com/rexops/rex","last_synced_at":"2025-05-14T13:08:38.279Z","repository":{"id":1163621,"uuid":"1053964","full_name":"RexOps/Rex","owner":"RexOps","description":"Rex, the friendly automation framework","archived":false,"fork":false,"pushed_at":"2025-02-28T09:09:49.000Z","size":8987,"stargazers_count":722,"open_issues_count":213,"forks_count":223,"subscribers_count":59,"default_branch":"master","last_synced_at":"2025-04-11T18:21:30.007Z","etag":null,"topics":["automation","configuration-management","devops","framework","infrastructure-as-code","infrastructure-automation","perl","rex","rexops"],"latest_commit_sha":null,"homepage":"https://www.rexify.org","language":"Perl","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/RexOps.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog","contributing":"CONTRIBUTING.md","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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2010-11-05T11:52:19.000Z","updated_at":"2025-04-08T20:07:04.000Z","dependencies_parsed_at":"2023-07-06T17:27:42.148Z","dependency_job_id":"1f0c4a3b-04a3-4810-8a87-bc3f8becac0c","html_url":"https://github.com/RexOps/Rex","commit_stats":{"total_commits":3840,"total_committers":114,"mean_commits":33.68421052631579,"dds":0.3731770833333333,"last_synced_commit":"32360e869a41dfac21f081259e2855e4f8907c4d"},"previous_names":[],"tags_count":185,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RexOps%2FRex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RexOps%2FRex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RexOps%2FRex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RexOps%2FRex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RexOps","download_url":"https://codeload.github.com/RexOps/Rex/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254149974,"owners_count":22022852,"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":["automation","configuration-management","devops","framework","infrastructure-as-code","infrastructure-automation","perl","rex","rexops"],"created_at":"2024-09-24T19:48:14.141Z","updated_at":"2025-05-14T13:08:33.240Z","avatar_url":"https://github.com/RexOps.png","language":"Perl","readme":"# Rex, the friendly automation framework\n\nThe main ideas behind Rex are:\n\n1. Puts _you_ in charge\n\n    Rex acknowledges that instead of silver bullets, there is more than one way to manage it.\n\n    It's friendly to any combinations of local and remote execution, push and pull style of management, or imperative and declarative approach.\n    Instead of forcing any specific model on you, it trusts you to be in the best position to decide what to automate and how, allowing you to build the automation tool _your_ situation requires.\n\n1. Easy to get on board\n\n    Automate what you are doing today, and add more tomorrow.\n\n    Rex runs locally, even if managing remotes via SSH. This means it's instantly usable, without big rollout processes or anyone else to convince, making it ideal and friendly for incremental automation.\n\n1. It's just Perl\n\n    Perl is a battle-tested, mature language, and Rex code is just Perl code.\n\n    This means whenever you reach the limitations of the built-in Rex features, a powerful programming language and module ecosystem is always at your fingertips to seamlessly extend it with modules from [CPAN](https://metacpan.org) or with your own code.\n    As a bonus, you can also use the usual well-established tools and workflows, like IDE integration for syntax highlighting, linting and formatting, or authoring and publishing [Rex modules on CPAN](https://metacpan.org/search?q=rex).\n    With the use of [Inline](https://metacpan.org/pod/Inline) and [FFI::Platypus](https://metacpan.org/pod/FFI::Platypus) modules, it's friendly to code written in other languages too. So after all, it's not just Perl.\n\n## Getting started\n\nWe have a [Getting started guide](https://www.rexify.org/docs/guides/start_using__r__ex.html) on the website that should help you with the first steps.\n\n## Installation\n\nThere are several methods to install (R)?ex: use your distro's package manager, download it from CPAN or build it from source. Check out the [Get Rex](https://www.rexify.org/get/index.html) page on the website for the different options, and choose the one that fits you best.\n\n### Build from source\n\nTo build (R)?ex from source, you need to install [Dist::Zilla](https://metacpan.org/pod/Dist::Zilla):\n\n    cpanm Dist::Zilla\n\nDist::Zilla provides the *dzil* command, which you can use to install (R)?ex dependencies:\n\n    dzil authordeps | cpanm\n    dzil listdeps | cpanm\n\nSome of the optional dependencies might not be available on all platforms, but to install them as well, use this command:\n\n    dzil listdeps --suggests | cpanm\n\nThen to install the OS-specific dependencies and (R)?ex itself:\n\n    dzil install\n\nIf you'd like to build a .tar.gz release file:\n\n    dzil build\n\n## Need help?\n\nIf a new user has difficulties to get on board, then it's a bug. Let us know via one of our [support channels](https://www.rexify.org/support/index.html)!\n\n## Contributing\n\nAll contributions are welcome: documentation, patches, bug reports, ideas, promoting (R)?ex at conferences and meetups, or anything else you can think of.\n\nFor more details, see the [Contributing guide](https://github.com/RexOps/Rex/blob/master/CONTRIBUTING.md) in the repo and the [Help (R)?ex](https://www.rexify.org/care/help__r__ex.html) page on the website.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frexops%2Frex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frexops%2Frex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frexops%2Frex/lists"}