51
Drush 5.0 NEW FEATURES. NEW POWERS.

Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Embed Size (px)

DESCRIPTION

Drush 5.0 overview - new features, standard features review, and some code examples.Slides from the 6th annual DrupalCamp LA 2012 event.

Citation preview

Page 1: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Drush 5.0NEW FEATURES. NEW POWERS.

Page 2: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Chris Charlton

Author • Community Leader • Drupal ContributorCo-Inventor of the iHoodie for iPad

http://xtnd.ushttp://chrischarlton.us

@charltonweb

Page 3: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

AT THE END: Super Geeky Stuff

Page 4: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

NOW: New Features

Page 5: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Drush for Windowsinstaller sponsored by Microsoft

Page 6: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Drush for Windows

Page 7: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Drush for Windowsinstaller sponsored by Microsoft

Drush Makenow in Drush core

Page 8: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Drush Make

Page 9: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush make my_fav_modules.make

Drush Make Example

Page 10: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

DrushMake.me

Page 11: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Drush for Windowsinstaller sponsored by Microsoft

Drush Makenow in Drush core

Page 12: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Autocompleteninjas use the TAB key

Page 13: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Autocompleteninjas use the TAB key

Easier multisite controltype --uri less

Page 14: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush site-set example.com

Drush Site Set Example

Page 15: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Autocompleteninjas use the TAB key

Easier multisite controltype --uri less

Page 16: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Site archivingzip a site & restore elsewhere

Page 17: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush archive-dump example.com --destination=/backups/example.com.tar

drush archive-restore ./example.com.tar

Drush Site Archiving Example

Page 18: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Site archivingzip a site & restore elsewhere

Shell command aliasescode-free customization

Page 19: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

$options['shell-aliases']['pull'] = '!git pull';$options['shell-aliases']['noncore'] = 'pm-list --no-core';

$options['shell-aliases']['sync-dev'] =  '!drush sql-sync @prod @dev &&  drush rsync @prod:%files @dev:%files'

$options['shell-aliases']['restart-apache'] =  '!sudo /etc/init.d/apache2 restart'

Drush Shell Aliases Examples

Page 20: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Site archivingzip a site & restore elsewhere

Custom command aliasescode-free customization

Page 21: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

NOW: Drupal Fundamentals

Page 22: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Download Modules, Themes, anythingone command will change your life

Page 23: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush dl admin_menu devel zen

Download Modules & Themes

Page 24: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Download Modules, Themes, anythingone command will change your life

Update all Modules & Drupal coreokay, two commands will change your life

Page 25: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush up

drush up admin_menu

Update all site modules & Drupal core

Page 26: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Download Modules, Themes, anythingone command will change your life

Update all Modules & Drupal coreokay, two commands will change your life

Page 27: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Manage Modules & Themesenable, disable, uninstall effortlessly

Page 28: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush en admin_menu

drush en admin_menu devel metatag

Enable Modules

Page 29: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Manage Modules & Themesenable, disable, uninstall effortlessly

Control user accountschange passwords in 0.1 seconds

Page 30: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush user-password 1 --password=“abc123”

Reset User Password

Page 31: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Manage Modules & Themesenable, disable, uninstall effortlessly

Control user accountschange passwords in 0.1 seconds

Page 32: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Clear cacheswork. flush. repeat.

Page 33: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush cc

drush cc all

Clear Cache

Page 34: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Clear cacheswork. flush. repeat.

Run croncron.php who?

Page 35: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush cron

Run Cron

Page 36: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Clear cacheswork. flush. repeat.

Run croncron.php who?

Page 37: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Site aliasesgive sites nicknames

Page 38: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush @dev status

drush example.com status

Site Aliases

Page 39: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Site aliasesgive sites nicknames

Read Watchdog logswho let the logs out

Page 40: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush watchdog-show

Run Cron

Id Date Severity Type Message 2 20/Apr 16:21 info system session expired. 1 20/Apr 16:20 info system node 13 published.

Page 41: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Site aliasesgive sites nicknames

Read Watchdog logswho let the logs out

Page 42: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Sync files & databasesninjas do it silently

Page 43: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush rsync @prod @dev

drush rsync @prod @dev --include-conf

drush rsync @prod:%files @dev:%files

Sync Files

Page 44: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush sql-sync @prod @dev

Sync Databases

Page 45: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Sync files & databasesninjas do it silently

Connect to database serversit’s practically teleportation

Page 46: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

drush sql-cli

drush sql-connect

Run Cron

Page 47: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Sync files & databasesninjas do it silently

Connect to database serversit’s practically teleportation

Page 48: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

NOW: Here Be Dragons (Geek Alert)

Page 49: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Manage queuesbe master of your domain

Flush image styles“oh, there it is”

Page 50: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

DrushRC commands folder/sites/all/drush

Built-in PHP web serverself propellant Drush

Page 51: Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton

Usage trackingyou flushed caches 777 times yesterday

Quick Drupalboot up new Drupal sites just to show off