Skip to content

Instantly share code, notes, and snippets.

@JoshuaBedford
Last active November 20, 2019 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JoshuaBedford/8fb26c51b00e6fc50918325dcd4a0a5d to your computer and use it in GitHub Desktop.
Save JoshuaBedford/8fb26c51b00e6fc50918325dcd4a0a5d to your computer and use it in GitHub Desktop.
Lando WordPress Recipe
# Lando is configured based on ‘recipes’ as config files. Paste the content below into a file .lando.yml.
# This recipe installs a LAMP stack, the WPCLI, and Node/npm.
# Check out my Lando ZSH plugin for greater efficiency:
# URL: https://github.com/JoshuaBedford/lando-zsh
name: {{ project_name_here }}
# recipe can be 'wordpress' or 'laravel'
recipe: wordpress
config:
webroot: .
services:
node:
# Node version 6.10
type: node
# Note that most deps should be installed by the normal npm install, this is
# for things like gulp/grunt cli that are global dependencies
globals:
gulp-cli: "latest"
bower: "latest"
webpack: "latest"
npm: "latest"
tooling:
npm:
service: node
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment