Lando .lando file starting recipe with dbase and redis info

This is just a standard .lando file recipe you can use to get you started

name: my_website
recipe: drupal8
config:
  xdebug: true
  webroot: web
  php: '7.2'
  via: nginx
  database: mysql
  drush: ^8
services:
  appserver:
    build:
      - composer install   
  database:
    type: mysql:5.7
    portforward: false
    creds:
      user: mark
      password: some_pswd
      database: my_website
  redis:
      type: redis
      portforward: true