A set of bash scripts to make it easier to install and sync your WP sites between local and staging environments.
- Built for MAMP installations. Can probably work with other local server setups but may require some customization.
- Consistent naming for your local db, local site folder, server db and server url. This helps reduce the amount of user prompts needed in the scripts.
- Version controlled theme.
- SSH access to your server. Specifically private key access so you can authenticate without adding any server passwords.
- wp-cli: Great set of tools for managing WP Installations via the command line
You can choose where to install this package. I organize my scripts into a 'Scripts' directory in the root of my computer.
git clone https://github.com/celsowhite/wp-bash-scripts.git
cd wp-bash-scripts
mv config_sample.cfg config.cfg
In the last step of the above commands you'll add all of your custom configuration settings (db info, wp info, server settings, etc.)
Update your ~/.bash_profile with the below alias's for quick access to the scripts. Change the directory path depending on where you cloned the repository.
alias wplocalinstall="~/Scripts/wp-bash-scripts/wp_local_install.sh"
alias wpmigratetoserver="~/Scripts/wp-bash-scripts/wp_migrate_to_server.sh"
alias wpupdateserver="~/Scripts/wp-bash-scripts/wp_update_server.sh"
wplocalinstall
Script to setup a blank WP install within local MAMP server. The install comes with a few plugins and my starter theme. Be sure to set your admin and other settings via the config.cfg file in the root of this folder.
- Create a new folder within htdocs.
- CD into the folder and run 'wplocalinstall'.
wpmigratetoserver
Script to migrate a site from a local MAMP install to the staging server for the first time.
- Create a blank DB on staging server.
- Copy the Github or Bitbucket theme repository URL. You'll input this into the command prompt in the next step.
- Run 'wpmigratetoserver' command within site folder.
wpupdateserver
Script to update a staging site after working on it locally. You can select which part of the site to update depending on what you worked on.
- Run 'wpupdateserver' command within site folder.
- Select which component of the site you want to update. Options include: Update just the theme, update just the database or update the complete site including uploads and plugins folders.
- If you want to update the complete site then you'll need to have the themes github repository URL ready to paste into the command prompt.
- Better error handling and messages if something goes wrong. No wifi, ssh access denied, etc.
- Flexibility beyond MAMP install. Potentially include some Vagrant focused scripts.