robo tize your local drupal 8 development

23
Robo-tize Drupal Development

Upload: joe-stewart

Post on 15-Apr-2017

166 views

Category:

Internet


0 download

TRANSCRIPT

Page 1: Robo tize your local drupal 8 development

Robo-tize Drupal Development

Page 2: Robo tize your local drupal 8 development

Intros

Joe Stewart

Presenter Photo

@joevstewart

/in/joevstewart

https://www.drupal.org/u/joestewart

Has been participating in open source since 2000. Developing and supporting Drupal for over 10 years.

Had a great experience as the 2016 Drupalcon New Orleans DevOps Track Chair.

DevOps Lead

2

Page 3: Robo tize your local drupal 8 development

About

3

Mediacurrent helps organizations build highly impactful, elegantly designed Drupal websites that achieve the strategic results they need.

● Single-source provider● Specializing in Drupal since 2007● Headquartered in Atlanta, GA● Team of 60+ Drupal Experts including

development, design and strategy● Clients include: Large Enterprise and

high-profile global brands

Page 4: Robo tize your local drupal 8 development

4

Interior Page (/w large graphic)

robo.li

Page 5: Robo tize your local drupal 8 development

5

● git● phpunit● ssh/rsync● File manipulation● Shell execution● Much more

Included Tasks

Page 6: Robo tize your local drupal 8 development

6

● OOP PHP● Composer dependency● PSR-4: Autoloader● Logger● Annotated Commands

Features

Page 7: Robo tize your local drupal 8 development

7

● Drupal site installation● Drush site-install command● boedah/robo-drush from Packagist● Robo structure● Create task

Outline

Page 8: Robo tize your local drupal 8 development

8

Using Drush

● Flexible options

Site Install

Page 9: Robo tize your local drupal 8 development

9

Using Robo

● Same options

Site Install

Page 10: Robo tize your local drupal 8 development

10

Comparison

Site Install

Page 11: Robo tize your local drupal 8 development

11

Using Robo

● Command shown● Elapsed time shown

Site Install

Page 12: Robo tize your local drupal 8 development

12

● RoboFile extends Robo Tasks● loadTasks trait● Methods are commands

RoboFile.php

Page 13: Robo tize your local drupal 8 development

13

● camelCase() is camel:case command● Chained methods● Options array● Method header● “Stack” Tasks

Robo conventions

Page 14: Robo tize your local drupal 8 development

14

Help Output

Page 15: Robo tize your local drupal 8 development

15

Help Output

Page 16: Robo tize your local drupal 8 development

16

Help Output

Page 17: Robo tize your local drupal 8 development

17

Help Output

Page 18: Robo tize your local drupal 8 development

18

Tasks● src/loadTasks - trait● Task names follow PSR4

Robo Structure

Page 19: Robo tize your local drupal 8 development

19

Site Install Task

Page 20: Robo tize your local drupal 8 development

20

● Returns Result object● Options use variables

Site Install Task

Page 21: Robo tize your local drupal 8 development

21

● PHP● PSR4 Autoloader● Extendable● Reusable

Robo Benefits

● Error handling● Logger● Create our own library● Assemble steps together● Drush 9

Page 22: Robo tize your local drupal 8 development

22

● PSR4 Autoloader

Benefits