2017 © Pedro Peláez
 

terminus-plugin terminus-build-tools-plugin

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

image

pantheon-systems/terminus-build-tools-plugin

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  • Wednesday, June 20, 2018
  • by greg.1.anderson
  • Repository
  • 18 Watchers
  • 22 Stars
  • 56,436 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 31 Forks
  • 41 Open issues
  • 100 Versions
  • 14 % Grown

The README.md

Terminus Build Tools Plugin

CircleCI Terminus v2.x Compatible, (*1)

Build Tools is a Terminus Plugin that contains a collection of commands useful for projects making use of an external Git provider and Continuous Integration (CI) along with Pantheon., (*2)

Table of Contents

  1. Project Purpose
  2. Requirements
  3. Installation
  4. Setup
  5. Available Services
  6. Commands
  7. Customization
  8. Build Tools Command Examples
  9. Help
  10. Related Repositories

Project Purpose

The main purposes of the Build Tools project are to:, (*3)

Ease the creation of new projects making use of an external Git provider, a Continuous Integration service, and Pantheon. This is primarily done through the build:project:create commands, which scaffolds new projects from a template repository and performs one-time setup, such as configuring SSH keys and environment variables, needed to connect an external Git provider and CI service with Pantheon. For detailed set-up instructions, see the Terminus Build Tools Guide. To use your own template repository see Customization., (*4)

Add additional commands to Terminus to make tasks common in an automated CI workflow easier. See Commands and Build Tools Command Examples for details., (*5)

Requirements

  • If you are using Terminus 2, you must use the Build Tools 2.x release
  • If you are using Terminus 1, you must use the Build Tools 1.x release. Note that Terminus 1 is nearing End of Life and version 2 is recommended.

PHP 7.2 or greater is recommended., (*6)

Installation

Installing Build Tools 2.x:

mkdir -p ~/.terminus/plugins
composer create-project --no-dev -d ~/.terminus/plugins pantheon-systems/terminus-build-tools-plugin:^2.0.0

Installing Build Tools 1.x:

mkdir -p ~/.terminus/plugins
composer create-project --no-dev -d ~/.terminus/plugins pantheon-systems/terminus-build-tools-plugin:^1

Note about dev dependencies

The Terminus Build Tools plugin should be installed without dev dependencies. If you install the plugin with a different method, such as cloning this source repository, use composer install --no-dev to download the project dependencies., (*7)

Setup

It is recommended that you use one of the provided example projects as a template when creating a new project. All of the example projects use Terminus 2 and Build Tools 2.x., (*8)

The default template repositories are each assigned an abbreviation, as shown below:, (*9)

More more details about these template repositories see Template Repositories in this document or visit the links above., (*10)

You can get started with one of these examples by using the build:project:create command:, (*11)

$ terminus build:project:create --team='My Agency Name' wp my-site

This command will create:, (*12)

  • A Pantheon site
  • A GitHub repository
  • A CircleCI test configuration

It will prompt you for the credentials it needs to create these assets. While GitHub and CircleCI are the defaults, other providers are supported as well. See available services for details., (*13)

Note: After running this command, if you get an error "There are no commands defined in the "build:project" namespace," then you may need to install this Terminus plugin first as described in Requirements, above., (*14)

Note: It is important to specify the name of your agency organization via the --team option. If you do not do this, then your new site will be associated with your user and will not have the capability to create multidev environments., (*15)

Available Services

The build:project:create command supports services in the following combination:, (*16)

Git Host CI Service
GitHub CircleCI
GitLab GitLabCI
BitBucket CircleCI

Starting a new GitLab Project

$ terminus build:project:create --git=gitlab --team='My Agency Name' wp my-site

Starting a new BitBucket Project

$ terminus build:project:create --git=bitbucket --team='My Agency Name' wp my-site

Limitations

Bitbucket - Composer Lock Updater isn't working quite yet., (*17)

Commands

The following commands are available as part of the Build Tools plugin., (*18)

build:project:create

The build:project:create command is used to initialize projects within the Git PR workflow. Automated setup of the Pantheon website along with the corresponding Git and CI provider is included., (*19)

Command Options

Additional options are available to further customize the build:project:create command:, (*20)

Option Description
--pantheon-site The name to use for the Pantheon site (defaults to the name of the Git site)
--team The Pantheon team to associate the site with
--org The Git organization to place the repository in (defaults to authenticated user)
--label The friendly name to use for the Pantheon site (defaults to the name of the Git site)
--email The git user email address to use when committing build results
--test-site-name The name to use when installing the test site
--admin-password The password to use for the admin when installing the test site
--admin-email The email address to use for the admin
--admin-username The username to use for the admin
--stability The stability to use with composer when creating the project (defaults to dev)
--keep The ability to keep a project repository cloned after your project is created
--use-ssh The ability to perform the initial git push to the repository provider over SSH instead of HTTPS
--ci The CI provider to use. Defaults to "circleci"
--git The git repository provider to use. Defaults to "github"
--visibility The visibility of the project. Defaults to "public". Use "public" or "private" for GitHub and "public", "private", or "internal" for GitLab
--region The region to create the site in. See the Pantheon regions documentation for details.

See terminus help build:project:create for more information., (*21)

build:project:repair

The build:project:repair command is used to repair projects that were created with the Build Tools plugin. This is useful for rotating credentials, such as provider authentication tokens., (*22)

Command Options

Additional options are available to further customize the build:project:repair command:, (*23)

Option Description
--env The environment variables you would like to set on the CI system

build:comment:add:commit

The build:comment:add:commit command is used to add a comment to a commit on the Git Provider. This is useful in CI scripts for commenting as multidev environments are created or other code feedback is determined., (*24)

Either the --message and/or the --site_url options are required., (*25)

Command Options

Additional options are available to customize the build:comment:add:commit command:, (*26)

Option Description
--sha The SHA hash of the commit to add the comment to
--message The message to post to the commit
--site_url If provided, will include a "Visit Site" link at the start of the comment, linking to the provided site URL

terminus build:comment:add:pr

The build:comment:add:pr command is used to add a comment to a pull request on the Git Provider. This is useful in CI scripts for commenting as multidev environments are created or other code feedback is determined., (*27)

The --pr_id option and either the --message and/or the --site_url options are required., (*28)

Command Options

Additional options are available to customize the build:comment:add:pr command:, (*29)

Option Description
--pr_id Required. The number of the pull request to add the comment to
--message The message to post to the pull request
--site_url If provided, will include a "Visit Site" link at the start of the pull request, linking to the provided site URL

build:credentials:clear

The build:credentials:clear command is available to clear cached credentials from Build Tools. This is useful when developing Build Tools or trying to remove credentials from a machine., (*30)

Command Options

There are no additional options for this command., (*31)

build:env:create

The build:env:create command creates the specified multidev environment on the given Pantheon site from the build assets at the current working directory., (*32)

Command Options

Option Description
--label The name of the environment in commit comments
--clone-content Clone the content from the dev environment to the new multidev environment
--db-only When cloning content, whether to only clone the database (by default, both the database and files are cloned
--message The commit message to use when committing the built assets to Pantheon
--no-git-force Set this flag to omit the --force flag from git add and git push

build:env:delete:ci

The build:env:delete:ci command is used to delete multidev environments on Pantheon that match the CI pattern of builds (ci-*)., (*33)

Command Options

Option Description
--keep The number of environments matching the pattern to keep
--dry-run If set, this command only determines which environments should be deleted but doesn't actually delete them

build:env:delete:pr

The build:env:delete:pr command is used to delete multidev environments on Pantheon that match the PR pattern of builds (pr-*) for pull requests (GitHub and BitBucket) or merge requests (GitLab) that have been closed., (*34)

Command Options

Option Description
--dry-run If set, this command only determines which environments should be deleted but doesn't actually delete them

build:env:install

The build:env:install command is used to install the CMS on a Pantheon site the specified site., (*35)

Command Options

Option Description
--account-mail The email address for the first user account created during install
--account-name The username for the first user account created during install
--account-pass The password for the first user account created during install
--site-mail The email address used for the CMS
--site-name The name of the site to be set within the CMS

build:env:list

The build:env:list command is used to list the multidev environments in the specified site., (*36)

Command Options

There are no additional options for this command., (*37)

build:env:merge

The build:env:merge command merges a multidev environment in Pantheon into the dev environment., (*38)

Command Options

Option Description
--label The name of the environment when referred to in commit comments
--delete Whether or not to delete the multidev environment after it is merged

build:env:obliterate

The build:env:obliterate command deletes a project that was set up through the build:project:create workflow. This includes the Pantheon site as well as the Git provider repository and the CI provider project., (*39)

Note: this is a destructive, irreversible command that should be used with caution., (*40)

Command Options

There are no additional command options for this command., (*41)

build:env:push

The build:env:push command pushes code in the current directory to an existing Pantheon site/environment., (*42)

Command Options

Option Description
--label The name of the site when referred to in commit comments.
--message The commit message to use when committing built code to Pantheon
--no-git-force Set this flag to omit the --force flag from git add and git push

build:project:info

The build:project:info command displays information about a site created by the build:project:create command., (*43)

Command Options

There are no additional command options for this command., (*44)

build:secrets:delete

The build:secrets:delete command deletes a secret from Pantheon. These secrets are commonly used for storing informatiion needed by CI integrations, such as Quicksilver Pushback., (*45)

Command Options

Option Description
--file The name of the file to use for storing the secret. Defaults to tokens.json

build:secrets:list

The build:secrets:list command lists all secret from Pantheon. These secrets are commonly used for storing informatiion needed by future CI integration such as Quicksilver Pushback., (*46)

Command Options

Option Description
--file The name of the file to use for storing the secret. Defaults to tokens.json

build:secrets:set

The build:secrets:set command sets a secret in a Pantheon. These secrets are commonly used for storing informatiion needed by future CI integration such as Quicksilver Pushback., (*47)

Command Options

Option Description
--file The name of the file to use for storing the secret. Defaults to tokens.json
--clear If set, will overwrite a secret with the existing name
--skip-if-empty If set, will not write anything if the value passed to the command is empty

build:secrets:show

The build:secrets:show command shows a secret from Pantheon. These secrets are commonly used for storing informatiion needed by CI integrations, such as Quicksilver Pushback., (*48)

Command Options

Option Description
--file The name of the file to use for storing the secret. Defaults to tokens.json

build:workflow:wait

The build:workflow:wait command waits for a workflow in Pantheon to complete before returning. This is useful when waiting for code to be deployed to a Pantheon environment., (*49)

Command Options

Option Description
--start The time to ignore workflow operations before
--max The maximum amount of time to wait for a workflow to complete

Customization

You may easily create your own project template by forking one of the Pantheon maintained examples (linked above) and customizing it to suit your needs. To use a custom starter, register your project on Packagist, and then use the projects org/name with the build:project:create command:, (*50)

$ terminus build:project:create --team='My Agency Name' my-project/my-starter my-site

See Starter Site Shortcuts below for instructions on defining your own shortcuts for your starter projects., (*51)

Configuration

Configuration values for the Terminus Build Tools Plugin may be stored in your Terminus Configuration file, located at ~/.terminus/config.yml. This is especially useful for agencies who would liike every site created within their Pantheon team., (*52)

Default Values for Options

Terminus configuration is based on the Robo PHP configuration system. Default option values for Terminus commands can be defined in the same way as other Robo applications. For example, the options for the command build:project:create are stored in the section command: > build: > project: > create: > options:. The example below provides default values for the --admin-password and --team options., (*53)

command:
  build:
    project:
      create:
        options:
          admin-password: secret-secret
          team: My Pantheon Org

Self-Hosted GitLab

The GitLab URL used by Build Tools can be defined by updating the build-tools:provider:git:gitlab:url configuration value, as demonstrated by the example below. Note that you will need to replace hostname with the actual GitLab instance hostname., (*54)

build-tools:
  provider:
    git:
      gitlab:
        url: hostname

Starter Site Shortcuts

If you often create sites based on certain common starter sites, you may also use your Terminus configuration file to define custom starter site shortcuts. The example below defines shortcuts for the Lightning and Contenta distributions:, (*55)

command:
  build:
    project:
      create:
        shortcuts:
          contenta: pantheon-systems/example-drops-8-composer:dev-contenta

Note that the project name follows the standard defined by Composer: org-name / project-name : dev- branch-name., (*56)

Build Customizations

To customize this for a specific project:, (*57)

  • Define necessary environment variables within your CI provider:
    • TERMINUS_SITE: The name of the Pantheon site that will be used in testing.
    • TERMINUS_TOKEN: A Terminus OAuth token that has write access to the terminus site specified by TERMINUS_SITE.
    • GIT_EMAIL: Used to configure the git user’s email address for commits we make.
  • Customize dependencies: as needed to install additional tools.
  • Replace example test: section with commands to run your tests.
  • Add a build-assets script to your composer.json file.

PR Environments vs Other Test Environments

Note that using a single environment for each PR means that it is not possible to run multiple tests against the same PR at the same time. Currently, no effort is made to cancel running tests when a new one is kicked off; if the concurrent build is not cancelled before a new commit is pushed to the PR branch, then the two tests could potentially conflict with each other. If support for parallel tests on the same PR is desired, then it is possible to eliminate PR environments, and make all tests run in their own independent CI environment. To do this, configure your CI provider by adding the following environment variable:, (*58)

    TERMINUS_ENV: $CI_LABEL

Running Tests without Multidevs

To use this tool on a Pantheon site that does not have multidev environments support, it is possible to run all tests against the dev environment. If this is done, then it is not possible to run multiple tests at the same time. To use the dev environment, configure your CI provider by adding the following environment variable:, (*59)

    TERMINUS_ENV: dev

** IMPORTANT NOTE: ** If you initially set up your site using terminus build:project:create, and you do not use the --team option, or the team you specify is not an Agency organization, then your configuration will automatically be set up to use only the dev environment. If you later add multidev capabilities to your site, you will need to edit the environment variables in your CI configuration and delete the entry for TERMINUS_ENV., (*60)

Build Tools Command Examples

The examples below show how some of the other build:env: commands are used within test scripts. It is not usually necessary to run any of these commands directly; they may be of interest if you are customizing or building your own test scripts., (*61)

Create Testing Multidev

terminus build:env:create my-pantheon-site.dev ci-1234, (*62)

This command will commit the generated artifacts to a new branch and then create the requested multidev environment for use in testing., (*63)

Push Code to the Dev Environment

terminus build:env:push my-pantheon-site.dev, (*64)

This command will commit the generated artifacts to an existing multidev environment, or to the dev environment., (*65)

Merge Testing Multidev into Dev Environment

terminus build:env:merge my-pantheon-site.ci-1234, (*66)

Delete Testing Multidevs

terminus build:env:delete my-pantheon-site '^ci-' --keep=2 --delete-branch, (*67)

List Testing Multidevs

terminus build:env:list, (*68)

Commenting on a pull request or merge request

terminus build:comment:add:pr --pr_number=123 --message="Behat tests passed!", (*69)

Help

Run terminus list build for a complete list of available commands. Use terminus help <command> to get help on one command., (*70)

Template Repositories

In addition to the Terminus Build Tools Plugin, Pantheon maintains template repositories for:, (*71)

Each repository includes an opinionated set of workflows and deployment scripts. These templates are meant to be a one-time starting point for new projects and customized as needed. Improvements made over time must be manually applied to existing projects. These are examples, not frameworks., (*72)

Build Tools CI Dockerfile

Pantheon maintains a Build Tools CI Dockerfile, which is deployed to quay.io, for use in Continuous Integration environments. It contains common Pantheon tools, such as Terminus and the Terminus Build Tools plugin. The deployed image tags follow semantic versioning., (*73)

Quicksilver Pushback

Quicksilver pushback is a project that makes use of Pantheon's Quicksilver Webhooks to apply code commits made on Pantheon to an external Git provider., (*74)

The Versions

20/06 2018

dev-master

9999999-dev

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

09/04 2018

2.0.0-alpha5

2.0.0.0-alpha5

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

06/04 2018

dev-json-content-type-for-circle

dev-json-content-type-for-circle

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

03/04 2018

dev-terminus-1.8.0

dev-terminus-1.8.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

01/04 2018

dev-NickWilde1990-improved-bitbucket-support

dev-NickWilde1990-improved-bitbucket-support

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

15/03 2018

dev-issue-132-pr-delete-help-text

dev-issue-132-pr-delete-help-text

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

16/11 2017

2.0.0-alpha4

2.0.0.0-alpha4

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

15/11 2017

dev-fix-commit-comment

dev-fix-commit-comment

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

27/09 2017

dev-build-commit-comment-command

dev-build-commit-comment-command

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

15/09 2017

2.0.0-alpha3

2.0.0.0-alpha3

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

09/09 2017

dev-confirm-msg

dev-confirm-msg

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

09/09 2017

dev-prompt-again

dev-prompt-again

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

08/09 2017

dev-fix-use-statements

dev-fix-use-statements

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

31/08 2017

dev-docker-php-ci

dev-docker-php-ci

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

25/08 2017

dev-ratelimit-check

dev-ratelimit-check

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

25/08 2017

dev-refactor-providers

dev-refactor-providers

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

24/08 2017

dev-better-initial-commit

dev-better-initial-commit

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

24/08 2017

dev-refactor-obliterate

dev-refactor-obliterate

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

27/07 2017

dev-delete-keys

dev-delete-keys

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

27/07 2017

1.x-dev

1.9999999.9999999.9999999-dev

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

26/07 2017

dev-require-closed-pr-1x

dev-require-closed-pr-1x

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

26/07 2017

2.0.0-alpha2

2.0.0.0-alpha2

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

25/07 2017

dev-require-closed-pr

dev-require-closed-pr

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

25/07 2017

1.3.9

1.3.9.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

25/07 2017

dev-redo-merge-1x

dev-redo-merge-1x

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

25/07 2017

dev-allow-pr-number

dev-allow-pr-number

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

25/07 2017

dev-redo-merge

dev-redo-merge

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

24/07 2017

dev-merge-via-reset-hard

dev-merge-via-reset-hard

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

24/07 2017

1.3.8

1.3.8.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

24/07 2017

dev-strategy-ours

dev-strategy-ours

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

22/07 2017

dev-user-shortcuts

dev-user-shortcuts

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

21/07 2017

dev-d7-tests

dev-d7-tests

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

21/07 2017

dev-bitbucket-provider

dev-bitbucket-provider

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

20/07 2017

dev-redact-git-push

dev-redact-git-push

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

20/07 2017

dev-LukasRos-bitbucket-provider

dev-LukasRos-bitbucket-provider

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

14/07 2017

1.3.7

1.3.7.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

12/07 2017

dev-use-tmp-branch-on-merge

dev-use-tmp-branch-on-merge

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

12/07 2017

dev-allow-empty-config

dev-allow-empty-config

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

12/07 2017

dev-delete-tmp-merge-branch

dev-delete-tmp-merge-branch

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

11/07 2017

dev-autodetect-upstream

dev-autodetect-upstream

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

06/07 2017

dev-drops-7-support

dev-drops-7-support

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

06/07 2017

dev-ignore-errors-in-changesfile

dev-ignore-errors-in-changesfile

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

04/07 2017

dev-refactor-gitprovider

dev-refactor-gitprovider

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

01/07 2017

2.0.0-alpha1

2.0.0.0-alpha1

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

01/07 2017

dev-moar-refactor

dev-moar-refactor

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

01/07 2017

dev-fix-has-remote

dev-fix-has-remote

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

17/06 2017

dev-build-assets-in-create-project

dev-build-assets-in-create-project

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

16/06 2017

1.3.6

1.3.6.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

16/06 2017

dev-preserve-local-repository

dev-preserve-local-repository

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

16/06 2017

1.3.5

1.3.5.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

16/06 2017

dev-create-from-dir-master

dev-create-from-dir-master

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

16/06 2017

1.3.4

1.3.4.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

16/06 2017

dev-create-from-dir

dev-create-from-dir

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

26/05 2017

dev-wordpress-build-plugin

dev-wordpress-build-plugin

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

25/05 2017

1.3.3

1.3.3.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

25/05 2017

dev-modern-aliases

dev-modern-aliases

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

18/05 2017

dev-refactor-commandfiles

dev-refactor-commandfiles

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

08/05 2017

1.3.2

1.3.2.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

08/05 2017

dev-create-project-workdir

dev-create-project-workdir

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

22/04 2017

1.3.1

1.3.1.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

22/04 2017

dev-add-remote-origin

dev-add-remote-origin

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

22/04 2017

dev-prompt-formatting

dev-prompt-formatting

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

18/04 2017

1.3.0

1.3.0.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

18/04 2017

dev-export-config-on-install

dev-export-config-on-install

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

17/04 2017

dev-consistent-sut

dev-consistent-sut

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

15/04 2017

1.2.27

1.2.27.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

15/04 2017

1.2.26

1.2.26.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

14/04 2017

dev-token-instructions

dev-token-instructions

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

13/04 2017

dev-php-version-warning

dev-php-version-warning

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

11/04 2017

1.2.25

1.2.25.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

08/04 2017

1.2.24

1.2.24.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

14/03 2017

dev-try-wordpress

dev-try-wordpress

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

14/03 2017

1.2.23

1.2.23.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

13/03 2017

1.2.22

1.2.22.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

13/03 2017

dev-clone-content

dev-clone-content

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

13/03 2017

dev-remove-install

dev-remove-install

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

11/03 2017

dev-unnecessary-asign

dev-unnecessary-asign

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

11/03 2017

1.2.21

1.2.21.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

11/03 2017

dev-create-project

dev-create-project

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

08/03 2017

1.2.20

1.2.20.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

08/03 2017

1.2.19

1.2.19.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

08/03 2017

1.2.18

1.2.18.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

07/03 2017

1.2.17

1.2.17.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

18/01 2017

1.2.16

1.2.16.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

18/01 2017

1.2.15

1.2.15.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

14/01 2017

dev-reuse-multidev

dev-reuse-multidev

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

14/01 2017

1.2.14

1.2.14.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

11/01 2017

1.2.13

1.2.13.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

11/01 2017

1.2.12

1.2.12.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

11/01 2017

1.2.11

1.2.11.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

11/01 2017

1.2.10

1.2.10.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

11/01 2017

1.2.9

1.2.9.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

10/01 2017

dev-force-add

dev-force-add

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

10/01 2017

1.2.8

1.2.8.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

09/01 2017

1.2.7

1.2.7.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

08/01 2017

1.2.6

1.2.6.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

06/01 2017

1.2.5

1.2.5.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

06/01 2017

1.2.4

1.2.4.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

06/01 2017

1.2.3

1.2.3.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT

06/01 2017

1.2.2

1.2.2.0

Build Tools - A Terminus plugin that contain commands to manage build assets on Pantheon.

  Sources   Download

MIT