Skip to content

Instantly share code, notes, and snippets.

@sjothen
Forked from retlehs/sync-prod.sh
Last active January 18, 2017 18:33
Show Gist options
  • Select an option

  • Save sjothen/c8a88148f3c1c3a135aaedc5154f2ba8 to your computer and use it in GitHub Desktop.

Select an option

Save sjothen/c8a88148f3c1c3a135aaedc5154f2ba8 to your computer and use it in GitHub Desktop.
WP-CLI aliases sync example
read -r -p "Would you really like to reset your development database and pull the latest from production? [y/N] " response
if [[ "$response" =~ ^([yY][eE][sS]|[yY])$ ]]; then
wp @development db reset --yes &&
wp @production db export - > sql-dump-production.sql &&
wp @development db import sql-dump-production.sql &&
wp @development search-replace https://example.com https://example.dev
fi
path: web/wp
@production:
ssh: web@example.com/srv/www/example.com/current
@development:
ssh: vagrant@example.dev/srv/www/example.com/current
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment