-
-
Save andreiglingeanu/f7524735fe8c17a2a32f349ce50c6ae3 to your computer and use it in GitHub Desktop.
WP-CLI aliases sync example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
else | |
exit 0 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
path: web/wp | |
@production: | |
ssh: [email protected]/srv/www/example.com/current | |
@development: | |
ssh: [email protected]/srv/www/example.com/current |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment