A WP-CLI command for syncing a live site to a development environment
Find a file
2019-10-11 18:11:04 +01:00
CHANGELOG.md Version 1.1.0 2019-10-11 18:05:26 +01:00
composer.json Version 1.1.0 2019-10-11 18:05:26 +01:00
LICENSE LICENSE 2019-04-09 18:29:21 +01:00
README.md Remvoed dev-master from README 2019-10-11 18:11:04 +01:00
wp-cli-sync.php Version 1.1.0 2019-10-11 18:05:26 +01:00

WP CLI Sync

A WP-CLI command for syncing a live site to a development environment

Requirements

Installation

  1. Require the plugin by running:
composer require jonbp/wp-cli-sync
  1. Add the following to your .env file (don't forget .env.example for reference 😉):
# WP-CLI Sync Settings [wp sync]
LIVE_SSH_HOSTNAME=""
LIVE_SSH_USERNAME=""
REMOTE_PROJECT_LOCATION="~/gitrepo"

# Plugins should be formatted in a comma seperated format
# For example: "plugin1,plugin2,plugin3"

# Plugins activated on sync
DEV_ACTIVATED_PLUGINS=""

# Plugins deactivated on sync
DEV_DEACTIVATED_PLUGINS=""
  1. Run wp sync or ./vendor/bin/wp sync from the project root if you don't have WP-CLI installed.