lando / platformsh

The Official Platform.sh Lando Plugin
https://docs.lando.dev/platformsh
GNU General Public License v3.0
6 stars 4 forks source link
lando lando-hosting-integration lando-plugin lando-recipe platformsh

Platform.sh Lando Plugin

Warning: This plugin is currently unsupported! If your team is interested in sponsoring the integration, contact us!

This is the official Lando plugin for Platform.sh. When installed it...

Of course, once a user is running their Platform.sh project with Lando they can take advantage of all the other awesome development features Lando provides.

Basic Usage

Clone a project down from Platform.sh.

# Make and go into an empty directory
mkdir myproject && cd myproject

# Clone down code from Platform.sh
lando init --source

# Start the project up
lando start

# Pull down relationships and mounts
lando pull

Once your project is running you can access relevant tooling commands.

# Run platform cli commands
lando platform auth:info

# Note that mysql is the name of a relationship defined in .platform.yaml
# Access relationships directly
lando mysql main -e "show tables;"
# Manually importing a database
lando mysql main < dump.sql

You can also override Platform.sh configuarion in your Landofile with things that make more sense for development.

name: platformsh-drupal8
recipe: platformsh
config:
  id: PROJECTID
  overrides:
    app:
      variables:
        env:
          APP_ENV: dev
        d8settings:
          skip_permissions_hardening: 1
    db:
      configuration:
        properties:
          max_allowed_packet: 63

For more info you should check out the docs:

Issues, Questions and Support

If you have a question or would like some community support we recommend you join us on Slack.

If you'd like to report a bug or submit a feature request then please use the issue queue in this repo.

Changelog

We try to log all changes big and small in both THE CHANGELOG and the release notes.

Development

If you're interested in working on this plugin then we recommend you check out the development guide.

Maintainers

Contributors

Made with contributors-img.

Other Selected Resources