Find the Exponential Software extensions you want
| UNIX name | Owner | Status |
|---|---|---|
| st-ez_deployment_recipes | 7x | stable |
| Version | Compatible with |
|---|---|
| N/A | N/A |
This repository contains Capistrano recipes for deploying eZ Publish sites.
To install these recipes onto an eZ Publish site you need to:
Create a Gemfile in the site root with the following contents:
source 'https://rubygems.org'
# Deployment recipes
gem 'ez_deployment', :git => 'git@codebasehq.com:vision/capistrano/ez_recipes.git', :branch => 'master'
Require the specific recipes you need in config/deploy.rb, e.g:
begin
require 'ezp_deployment/tools'
require 'ezp_deployment/deploy_46'
rescue LoadError
puts "Could not load the required deployment receipies"
puts "Make sure to run bundler to install the required dependencies"
end
The begin/rescue clause is required if you have other tasks in
config/deploy.rb that invoke bundler or relies on any functionality provided by
ezp_deployment. If that is not the case you can remove it.
If you have made any changes to the recipes in this repository you can fetch
the latest changes by running bundle update ez_deployment. This will update
Gemfile.lock, so remember to commit it.