pantheon-systems / terminus-decoupled-kit-plugin
Creates a Decoupled Kit project for use on Pantheon
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 7
Forks: 3
Open Issues: 1
Type:terminus-plugin
Requires (Dev)
- phpunit/phpunit: ^9
- squizlabs/php_codesniffer: ^3.6
- symfony/yaml: ^5
This package is auto-updated.
Last update: 2024-10-11 01:25:02 UTC
README
The Terminus Decoupled Kit Plugin provides commands useful for creating decoupled projects on Pantheon using pre-configured starter kits.
The decoupled-kit:create
command guides you through the following tasks:
- Creating a new site on Pantheon for the CMS back-end of your choice.
- Optionally installing your CMS.
- Creating a front-end codebase that sources data from your newly created CMS project. This codebase will be automatically configured for local development, and can later be deployed to Pantheon using the import repository workflow.
Requirements
Installation
terminus self:plugin:install pantheon-systems/terminus-decoupled-kit-plugin
Commands
decoupled-kit:create
Creates a back-end CMS site on Pantheon and a front-end codebase that sources data from the CMS site.
To run interactively:
terminus decoupled-kit:create
Command Arguments
The following arguments can be provided to the decoupled-kit:create command:
decoupled-kit:create [options] [--] <site_name> <label> [<upstream_id>]
Example:
decoupled-kit:create <site> <label> <upstream>
Creates a new site named site
, human-readably labeled label
, using code from upstream
.
Command Options
Additional options are available to further customize the decoupled-kit:create command:
Example:
decoupled-kit:create <site> <label> <upstream> --org=<org> --cms<cms> --install-cms<install-cms> --region<region>
Creates a new site named site
, human-readably labeled label
, associated with organization
, for the specified cms
.
Related Projects
- Create Pantheon Decoupled Kit - NodeJS CLI used to create and upgrade front-end codebases based on Pantheon starter kits. Used by this terminus plugin and can also be used independently.
Known Limitations
- Currently this terminus plugin creates your front-end codebase, but does not automatically deploy it to Pantheon. You can deploy your front-end codebase to Pantheon using the import repository workflow.