xenomedia / xeno_robo
Robo tasks used at Xeno Media
Installs: 948
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 3
Type:robo-tasks
Requires
- php: >=7.4
- composer/composer: ^2.0
- consolidation/robo: ^1.0
- nuvoleweb/robo-config: ^0.1.3
README
Robo commands for developing websites at Xeno Media.
Getting Started
Installation
Install with Composer by running:
composer global require xenomedia/xeno_robo
or
composer global require consolidation/cgr composer global remove consolidation/robo cgr xenomedia/xeno_robo
Create Robo File
In the root of your project create RoboFile.php
file. Extend the class based
on the project you are working on.
Example Drupal 7 RoboFile.php:
<?php use XenoMedia\XenoRobo\Robo\Drupal\BaseDrupalD7; /** * Provides Drupal 7 robo commands. */ class RoboFile extends BaseDrupalD7 { } ?>
Example Drupal 8 RoboFile.php:
<?php use XenoMedia\XenoRobo\Robo\Drupal\BaseDrupalD8; /** * Provides Drupal 8 robo commands. */ class RoboFile extends BaseDrupalD8 { } ?>
Example Wordpress Robo File:
<?php use XenoMedia\XenoRobo\Robo\Wordpress\BaseWordpress; /** * Provides Wordpress robo commands. */ class RoboFile extends BaseWordpress { } ?>
Create robo.yml.dist file
Create a yml file that looks like this in the root of your project:
site: grunt_path: # Leave blank if no grunt. root_path: # Leave blank if same as project path. live_domain: # Used for WP Search and replace local_domain: # Used for WP Search and replace database: database: user: password: # `robo db:get` settings # Pull the DB from Pantheon. pantheon: site_name: env: # Pull the DB from SSH. stage: site_name: # The name of the *sql.gz file to get. If the file name is `example.sql.gz` then enter `example` user: # Staging ssh user. host: # Staging ssh host. port: # SSH port number. backup_location: # Path to directory where backups are stored.