0.0
The project is in a healthy, maintained state
Wordpress tasks for Capistrano 3.x
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.1
~> 13.0

Runtime

>= 3.0.0.pre
 Project Readme

wp-capistrano

Capistrano tasks used to deploy wordpress project.

Install

#add this line in your Gemfile
gem 'wp-capistrano3'
#add this line in your Capfile
require 'capistrano/wp-capistrano'

Then run

bundle install 
#or bundle update

set following variables in your deploy.rb These variables will be used to generate wp_config.php at first deployment. And will install an empty wordpress

set :wp_db_name, "wp_db_name"
set :wp_db_password, "wp_db_password"
set :wp_db_user, "wp_db_user"
set :wp_db_host, "127.0.0.1"
#ADMIN LOCALE
set :wp_locale, "en_GB"

set :wp_url, "wp_domain"
set :wp_title, "wp site name"
set :wp_admin_user, "admin"
set :wp_admin_password, "password"
set :wp_admin_email, "admin@xxxx.com"

Workflow

The default capistrano workflow is used with the addition of theses tasks.

before 'deploy:check:linked_files', 'wp-capistrano:create_wp_config'
before 'deploy:updating', 'wp-capistrano:download_wordpress'
after 'wp-capistrano:download_wordpress', 'wp-capistrano:install_wordpress'
after 'wp-capistrano:download_wordpress', 'wp-capistrano:update_wordpress'
after 'wp-capistrano:install_wordpress', 'wp-capistrano:install_plugins'