Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Wordmove, multistaging deploy for WordPress

Ju Liu
September 13, 2013

Wordmove, multistaging deploy for WordPress

http://github.com/welaika/wordmove

Wordmove is a nice little gem that lets you automatically mirror local Wordpress installations and DB data back and forth from your local development machine to the remote staging server. SSH and FTP connections are both supported.

Think of it like Capistrano for Wordpress, complete with push/pull capabilities.

Here are the videos in this talk:
https://vimeo.com/74648079
https://vimeo.com/74647529
https://vimeo.com/74646861

Ju Liu

September 13, 2013
Tweet

More Decks by Ju Liu

Other Decks in Programming

Transcript

  1. ✓ 46% freelancer ✓ 78% uses FTP for deploying ✓

    76% worked live on production ✓ No common approach for database via Smashing Magazine | http://bit.ly/1atrWRp WordPress usage
  2. Movefile local: vhost: "http://wpday.local" wordpress_path: "/home/welaika/sites/wpday.local" database: name: "wpday" user:

    "root" password: "root" host: "localhost" remote: vhost: "http://wpday.welaika.com" wordpress_path: "/var/www/wpday.welaika.com" database: name: "wpday" user: "welaika" password: "p4ssw0rd" host: "localhost" ssh: user: "welaika" password: "sshpass" host: "mt.welaika.com”
  3. $ wordmove help push Usage: wordmove push Options: -w, [--wordpress]

    -u, [--uploads] -t, [--themes] -p, [--plugins] -l, [--languages] -d, [--db] -v, [--verbose] -s, [--simulate] -e, [--environment=ENVIRONMENT] -c, [--config=CONFIG] [--no-adapt] [--all]
  4. Movefile local: vhost: "http://wpday.local" wordpress_path: "/home/welaika/sites/wpday.local" database: [...] demo: vhost:

    "http://wpday.demo.welaika.com" wordpress_path: "/var/www/wpday.demo.welaika.com" database: [...] ftp: [...] production: vhost: "http://wpday.welaika.com" wordpress_path: "/var/www/wpday.welaika.com" database: [...] ssh: [...]
  5. Local ✓ Where you are developing Demo ✓ Where your

    customer is doing data entry Production ✓ Where the site is on air Case study
  6. Problem fixed! ✓ Push to the customer’s stage for review:

    $ wordmove push -t -e demo Customer approved! ✓ Go live with your site $ wordmove push -tud -e production Case study
  7. $ wordmove help pull Usage: wordmove pull Options: -w, [--wordpress]

    -u, [--uploads] -t, [--themes] -p, [--plugins] -l, [--languages] -d, [--db] -v, [--verbose] -s, [--simulate] -e, [--environment=ENVIRONMENT] -c, [--config=CONFIG] [--no-adapt] [--all]
  8. Good to know! ✓ DB serialized arrays translation (cForms anyone?)

    ✓ DB deploy over FTP? Yes, we can! ✓ Invoke wordmove from anywhere in your project tree
  9. WORDMOVE ✓ Fully automated, only one command to deploy ✓

    Frequent and fast deploy... on multiple environments ✓ Push and pull operations ✓ If it doesn’t work, than fix it!
  10. ✓ Alessandro Fazzi @Pioneer_Skies ✓ Fabrizio Monti @delphaber ✓ weLaika

    dev.welaika.com http://github.com/welaika/wordmove QUESTIONS! Open Source