Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikeshiyan/drupal-pantheon-lando-template
Simple composer project template for a Drupal 8 + Pantheon + Lando.
https://github.com/mikeshiyan/drupal-pantheon-lando-template
composer drupal8 lando pantheon template
Last synced: about 1 month ago
JSON representation
Simple composer project template for a Drupal 8 + Pantheon + Lando.
- Host: GitHub
- URL: https://github.com/mikeshiyan/drupal-pantheon-lando-template
- Owner: mikeshiyan
- Created: 2018-12-14T05:20:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-10T12:13:27.000Z (about 6 years ago)
- Last Synced: 2024-11-16T15:53:39.166Z (2 months ago)
- Topics: composer, drupal8, lando, pantheon, template
- Language: PHP
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Composer template for Drupal projects
Provides a starter kit for:
* Managing your site dependencies with [Composer](https://getcomposer.org/)
* Hosting your site on [Pantheon](https://pantheon.io/)
* Developing locally with [Lando](https://docs.devwithlando.io/)
* Running tests locally.This template is based on 3 others:
* https://github.com/drupal-composer/drupal-project
* https://github.com/pantheon-systems/example-drops-8-composer
* https://github.com/lando/lando-pantheon-ci-workflow-example## Prerequisites
* [Install Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
* [Install Lando](https://docs.devwithlando.io/installation/installing.html)
* [Install Composer](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-macos)
* [Install Terminus](https://pantheon.io/docs/terminus/install/)
* [Register at Pantheon](https://pantheon.io/register), add your SSH public key,
and create a machine token.
* Choose a machine-friendly site name. It should be all lower case with dashes
instead of spaces.## Usage
Run the following commands one at a time.
Set variables for re-use in terminal session. Replace values with yours.
```
export SITE_NAME="my-project"
export SITE_LABEL="My New Shiny Project"
export MACHINE_TOKEN="my_pantheon_machine_token"terminus auth:login --machine-token=$MACHINE_TOKEN
terminus site:create $SITE_NAME "$SITE_LABEL" empty
```The last command may complain that the site name is taken. In that case, try it
with another name instead of the `$SITE_NAME`, and then on success re-export the
`SITE_NAME` var with a new value.```
composer create-project --remove-vcs shiyan/drupal-pantheon-lando-template:dev-master $SITE_NAME
cd $SITE_NAMElando init --recipe=pantheon --pantheon-auth=$MACHINE_TOKEN --pantheon-site=$SITE_NAME
git init
git add --all
git commit --message="Started project."
```Start the project locally.
```
lando start
lando terminus auth:login --machine-token=$MACHINE_TOKEN
lando drush site:install --yes
```Then deploy it to Pantheon.
```
lando deploy-code
lando push --code=none --database=dev --files=dev
terminus drush $SITE_NAME.dev -- cache:rebuild
```