Speed up Drupal development with Drush

23
Getting started with Drush Downloading, installing and extending Drupal with Drush

Transcript of Speed up Drupal development with Drush

Page 1: Speed up Drupal development with Drush

Getting started with DrushDownloading, installing and extending

Drupal with Drush

Page 2: Speed up Drupal development with Drush

By Kevin BasarabMediacurrent Sr. Drupal Developer

@kbasarab

Page 3: Speed up Drupal development with Drush

What is Drush used for?

■ Making Sandwiches■ Downloading Drupal■ Installing Drupal■ Downloading/Installing Modules■ Clearing Cache■ Generating/Using .make files■ Aliases/Sync sites■ Backup■ Update

Page 4: Speed up Drupal development with Drush

g sandwiches

Source: http://drupal.org

Making Sandwiches

Page 5: Speed up Drupal development with Drush

Source: http://drupal.org

Making Sandwiches

Page 6: Speed up Drupal development with Drush

Downloading Drupaldrush dl drupal

cp -r drupal-7.14/* ./

rm -r drupal-7.14

Installing Drupaldrush si --db-url=mysql://root:@localhost/drush_demo --account-pass=test --site-name=Drush Demo

Source: http://drupal.org

Download Drupal

Page 7: Speed up Drupal development with Drush

■ Downloading Drupaldrush dl drupal

cp -r drupal-7.14/* ./

rm -r drupal-7.14

■ Installing Drupaldrush si --db-url=mysql://root:@localhost/drush_demo --account-pass=test --site-name=Drush Demo

Source: http://drupal.org

Download Drupal

Page 8: Speed up Drupal development with Drush

■ Downloading Drupaldrush dl drupal

cp -r drupal-7.14/* ./

rm -r drupal-7.14

■ Installing Drupaldrush si --db-url=mysql://root:@localhost/drush_demo --account-pass=test --site-name=Drush Demo

Source: http://drupal.org

Install Drupal

● Options○ --site-mail○ --db-prefix○ --db-su○ --db-su-pw

Page 9: Speed up Drupal development with Drush

■ Downloading Drupaldrush dl drupal

cp -r drupal-7.14/* ./

rm -r drupal-7.14

■ Installing Drupaldrush si --db-url=mysql://root:@localhost/drush_demo --account-pass=test --site-name=Drush Demo

Source: http://drupal.org

Download Modules

● Options○ --site-mail○ --db-prefix○ --db-su○ --db-su-pw

Page 10: Speed up Drupal development with Drush

■ Downloading Drupaldrush dl drupal

cp -r drupal-7.14/* ./

rm -r drupal-7.14

■ Installing Drupaldrush si --db-url=mysql://root:@localhost/drush_demo --account-pass=test --site-name=Drush Demo

Source: http://drupal.org

Enable Modules

● Options○ --site-mail○ --db-prefix○ --db-su○ --db-su-pw

Page 11: Speed up Drupal development with Drush

Source: http://drupal.org

Clear Caches

Page 12: Speed up Drupal development with Drush

Source: http://drupal.org

.make files

● Useful when installing same modules on multiple sites● Downloads and installs code, does not setup database● Can create from existing site using generate-makefile or build yourself

Page 13: Speed up Drupal development with Drush

.make files

Page 14: Speed up Drupal development with Drush

Source: http://drupal.org

.make files

● Manifest of projects

Page 15: Speed up Drupal development with Drush

Source: http://drupal.org

Alias Files

● Manifest of projects

Page 16: Speed up Drupal development with Drush

Source: http://drupal.org

Alias Files Usage

● Sync production, staging or dev database down to local quickly.● Push full database changes to production, staging or dev.

Page 17: Speed up Drupal development with Drush

Source: http://drupal.org

Alias Files Usage

● Full example: http://drupal.org/node/1401522

Page 18: Speed up Drupal development with Drush

Archive Backup

Page 19: Speed up Drupal development with Drush

Source: http://drupal.org

MySQL Dump

● Full example: http://drupal.org/node/1401522

Page 20: Speed up Drupal development with Drush

Update Code

Page 21: Speed up Drupal development with Drush

Source: http://drupal.org

Update DB

● Full example: http://drupal.org/node/1401522

Page 22: Speed up Drupal development with Drush

Bonus Round

● drush sqlc (MySQL CLI)● drush vset/drush vget (Variable set/get)● drush fu, drush fr, drush fra (Features)

Page 23: Speed up Drupal development with Drush

Questions?