{"id":18293197,"url":"https://github.com/getolympus/hestia-capistrano","last_synced_at":"2025-08-14T12:35:26.609Z","repository":{"id":56843244,"uuid":"54963264","full_name":"GetOlympus/Hestia-Capistrano","owner":"GetOlympus","description":"Ἑστία — Olympus Hestia is a Capistrano bundle Ruby gem which provides a complete solution for deploying WordPress website easily with the Olympus package.","archived":false,"fork":false,"pushed_at":"2020-03-10T08:01:10.000Z","size":53,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-09T20:17:36.788Z","etag":null,"topics":["capistrano","deploy","gem","hestia","olympus","ruby","ruby-gem"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/GetOlympus.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-03-29T09:29:05.000Z","updated_at":"2020-03-10T08:01:12.000Z","dependencies_parsed_at":"2022-08-21T00:50:15.821Z","dependency_job_id":null,"html_url":"https://github.com/GetOlympus/Hestia-Capistrano","commit_stats":null,"previous_names":["crewstyle/capistrano-olympus"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/GetOlympus/Hestia-Capistrano","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GetOlympus%2FHestia-Capistrano","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GetOlympus%2FHestia-Capistrano/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GetOlympus%2FHestia-Capistrano/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GetOlympus%2FHestia-Capistrano/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GetOlympus","download_url":"https://codeload.github.com/GetOlympus/Hestia-Capistrano/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GetOlympus%2FHestia-Capistrano/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270421494,"owners_count":24580812,"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","status":"online","status_checked_at":"2025-08-14T02:00:10.309Z","response_time":75,"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":["capistrano","deploy","gem","hestia","olympus","ruby","ruby-gem"],"created_at":"2024-11-05T14:23:11.022Z","updated_at":"2025-08-14T12:35:25.718Z","avatar_url":"https://github.com/GetOlympus.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Olympus Hestia Capistrano [![RubyGem Version][gem-image]][gem-url]\n\u003e **Olympus Hestia Capistrano** is a Ruby gem which provides a complete solution for deploying **WordPress** website easily with the **Olympus** package.\n\n---\n\n[![Olympus Component][olympus-image]][olympus-url]\n[![Capistrano 3][capistrano-image]][capistrano-url]\n[![MIT][license-image]][license-blob]\n\n---\n\n## Features\n\n+ Remote server automation tool with [**Capistrano**](http://capistranorb.com/)\n+ Best gem dependencies with `capistrano-file-permissions` and `colorize`\n+ Database update and [**wp-cli**](https://wp-cli.org/) integration\n+ Tasks ready for **pagespeed**, **web servers** and **varnish**\n+ And more...\n\n## Requirements\n\n+ **colorize** ~ \u003chttps://github.com/fazibear/colorize\u003e\n+ **composer** ~ \u003chttps://github.com/capistrano/composer\u003e\n+ **file-permissions** ~ \u003chttps://github.com/capistrano/file-permissions\u003e\n\n## Initialization\n\nAll default settings are defined in the `lib/capistrano/vars/defaults.rb` file. Please, refer to it to see exactly how the defaults are set up.  \nIf you want to override any setting, just set it on your `app/deploy/config.rb` file.\n\n```ruby\n# [optional] Setup files and dirs to symlink, setup web user to chown\nset :files, fetch(:files, ['app/config/env.php', 'app/config/salt.php', 'web/.htaccess', 'web/robots.txt'])\nset :dirs, fetch(:dirs, ['web/statics/languages', 'web/statics/plugins', 'web/statics/uploads'])\nset :stage_user, fetch(:stage_user, 'www-data')\n\n# Setup Capistrano\nset :log_level, fetch(:log_level, :debug)\nset :keep_releases, fetch(:keep_releases, 3)\n\n# Setup Project\nset :application, fetch(:application, 'olympus-capified')\nset :localurl, fetch(:localurl, 'https://www.domain.tld')\n```\n\n## Installation\n\nYou can easily install the **Olympus Hestia Capistrano** gem simply:\n\n```sh\n# In your Capfile\nrequire 'capistrano/olympus-hestia-capistrano'\n```\n\n```sh\n# In your Gemfile\ngem 'capistrano',  '~\u003e 3.4'\ngem 'olympus-hestia-capistrano', '~\u003e 0.0.10'\n```\n\n## Deployment\n\nDepending on your stage files, you can deploy simply thanks to the following command line:\n\n```sh\nbundle exec cap production deploy\n```\n\n## Release History\n\nSee [**CHANGELOG.md**][changelog-blob] for all details.\n\n## Contributing\n\n1. Fork it (\u003chttps://github.com/GetOlympus/Hestia-Capistrano/fork\u003e)\n2. Create your feature branch (`git checkout -b feature/fooBar`)\n3. Commit your changes (`git commit -am 'Add some fooBar'`)\n4. Push to the branch (`git push origin feature/fooBar`)\n5. Create a new Pull Request\n\n## Publishing\n\nTo publish a new `gem` file, follow these steps:\n\n```sh\ngem build olympus-hestia-capistrano.gemspec\ngem push olympus-hestia-capistrano-x.x.x.gem\n```\n\n---\n\n**Built with ♥ by [Achraf Chouk](http://github.com/crewstyle \"Achraf Chouk\") ~ (c) since a long time.**\n\n\u003c!-- links \u0026 imgs dfn's --\u003e\n[olympus-image]: https://img.shields.io/badge/for-Olympus-44cc11.svg?style=flat-square\n[olympus-url]: https://github.com/GetOlympus\n[capistrano-image]: https://img.shields.io/badge/Capistrano-3-52C1DB.svg?style=flat-square\n[capistrano-url]: https://github.com/capistrano/capistrano\n[changelog-blob]: https://github.com/GetOlympus/Hestia-Capistrano/blob/master/CHANGELOG.md\n[gem-image]: https://img.shields.io/gem/v/olympus-hestia-capistrano.svg?style=flat-square\n[gem-url]: https://rubygems.org/gems/olympus-hestia-capistrano\n[license-blob]: https://github.com/GetOlympus/Hestia-Capistrano/blob/master/LICENSE\n[license-image]: https://img.shields.io/badge/license-MIT_License-blue.svg?style=flat-square","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetolympus%2Fhestia-capistrano","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgetolympus%2Fhestia-capistrano","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetolympus%2Fhestia-capistrano/lists"}