My lando config

For a while I ran lando without customizing it. Now that I've started to put in some preferences I want to use them across all sites. Here's what I've got:

name: drupalsite
recipe: drupal8
config:
  webroot: web
  xdebug: true
services:
  appserver:
    build_as_root:
      - apt update && apt install -y vim
      - apt update && apt install -y mycli
    overrides:
      environment:
        DRUSH_OPTIONS_URI: "https://drupalsite.lndo.site"
        PHP_IDE_CONFIG: "serverName=drupalsite.lndo.site"
        LC_ALL: C.UTF-8
        LANG: C.UTF-8
tooling:
  mycli:
    service: appserver
    description: mycli client
    cmd: mycli -udrupal8 -pdrupal8 -hdatabase drupal8

 

Tags