Platform.sh

Platform.shopen in new window is the end-to-end web platform for agile teams. With it you can build, evolve, and scale your website fleet—with zero infrastructure management investment. Get hosting, CI/CD, automated updates, global 24x7 support. And much more.

This Lando integration is currently in development and as such it has the following serious caveats:

  • This should be considered at an beta level of readiness
  • This has only been tested against Platform.sh's php project templates
  • This currently only supports Platform.sh's php application container
  • It's not yet clear how much customization to your project is currently supported

However, if you'd like to try it out and give your feedback on what worked and what didn't then please continue. You can also read about some more caveats here.

You can report any issues or feedback over hereopen in new window or check out the support page.

Custom Installation

This plugin is included with Lando by default. That means if you have Lando version 3.0.8 or higher then this plugin is already installed!

However if you would like to manually install the plugin, update it to the bleeding edge or install a particular version then use the below. Note that this installation method requires Lando 3.5.0+.

lando plugin-add @lando/platformsh
# @TODO
# @NOTE: This doesn't actaully work yet
hyperdrive install @lando/platformsh
# Ensure you have a global plugins directory
mkdir -p ~/.lando/plugins

# Install plugin
# NOTE: Modify the "npm install @lando/platformsh" line to install a particular version eg
# npm install @lando/platformsh@0.5.2
docker run --rm -it -v ${HOME}/.lando/plugins:/plugins -w /tmp node:16-alpine sh -c \
  "npm init -y \
  && npm install @lando/platformsh --production --flat --no-default-rc --no-lockfile --link-duplicates \
  && npm install --production --cwd /tmp/node_modules/@lando/platformsh \
  && mkdir -p /plugins/@lando \
  && mv --force /tmp/node_modules/@lando/platformsh /plugins/@lando/platformsh"

# Rebuild the plugin cache
lando --clear