{"id":28152627,"url":"https://github.com/lando/platformsh","last_synced_at":"2025-06-10T10:03:48.805Z","repository":{"id":40483171,"uuid":"414244476","full_name":"lando/platformsh","owner":"lando","description":"**UNSUPPORTED** The Official Platform.sh Lando Plugin","archived":false,"fork":false,"pushed_at":"2025-02-14T18:27:26.000Z","size":2098,"stargazers_count":6,"open_issues_count":80,"forks_count":4,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-05-09T20:23:15.611Z","etag":null,"topics":["lando","lando-hosting-integration","lando-plugin","lando-recipe","platformsh"],"latest_commit_sha":null,"homepage":"https://docs.lando.dev/platformsh","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lando.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"docs/support.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["lando","pirog"],"patreon":"devwithlando","open_collective":"devwithlando","custom":"https://lando.dev/join"}},"created_at":"2021-10-06T14:26:10.000Z","updated_at":"2025-02-14T18:27:30.000Z","dependencies_parsed_at":"2024-04-16T03:22:04.898Z","dependency_job_id":"db27f05a-6ba1-4fa6-a1fe-9756164ee69e","html_url":"https://github.com/lando/platformsh","commit_stats":{"total_commits":136,"total_committers":8,"mean_commits":17.0,"dds":0.5735294117647058,"last_synced_commit":"535492ba60af3bb21dc71eb994a2f516bc4d073f"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fplatformsh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fplatformsh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fplatformsh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lando%2Fplatformsh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lando","download_url":"https://codeload.github.com/lando/platformsh/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254077116,"owners_count":22010666,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["lando","lando-hosting-integration","lando-plugin","lando-recipe","platformsh"],"created_at":"2025-05-15T05:11:51.096Z","updated_at":"2025-05-15T05:11:51.309Z","avatar_url":"https://github.com/lando.png","language":"JavaScript","funding_links":["https://github.com/sponsors/lando","https://github.com/sponsors/pirog","https://patreon.com/devwithlando","https://opencollective.com/devwithlando","https://lando.dev/join"],"categories":[],"sub_categories":[],"readme":"# Platform.sh Lando Plugin\n\n**Warning: This plugin is currently unsupported! If your team is interested in sponsoring the integration, [contact us](https://docs.lando.dev/platformsh/support.html)!**\n\nThis is the _official_ [Lando](https://lando.dev) plugin for [Platform.sh](https://platform.sh). When installed it...\n\n* Allows users to spin up their Platform.sh projects for development with Lando\n* Allows users to sync database relationships and mounts between Platform.sh and Lando\n* Uses Platform.sh's own images for extremely close parity with production\n* Uses Platform.sh's own configuration files to determine what Lando should run and do\n* Provides users with relevant and containerized tooling commands\n\nOf course, once a user is running their Platform.sh project with Lando they can take advantage of [all the other awesome development features](https://docs.lando.dev) Lando provides.\n\n\n## Basic Usage\n\nClone a project down from Platform.sh.\n\n```bash\n# Make and go into an empty directory\nmkdir myproject \u0026\u0026 cd myproject\n\n# Clone down code from Platform.sh\nlando init --source\n\n# Start the project up\nlando start\n\n# Pull down relationships and mounts\nlando pull\n```\n\nOnce your project is running you can access [relevant tooling commands](https://github.com/lando/platformsh/blob/main/docs/usage.md#application-tooling).\n\n```bash\n# Run platform cli commands\nlando platform auth:info\n\n# Note that mysql is the name of a relationship defined in .platform.yaml\n# Access relationships directly\nlando mysql main -e \"show tables;\"\n# Manually importing a database\nlando mysql main \u003c dump.sql\n```\n\nYou can also [override Platform.sh configuarion](https://github.com/lando/platformsh/blob/main/docs/usage.md#overriding-config) in your Landofile with things that make more sense for development.\n\n```yaml\nname: platformsh-drupal8\nrecipe: platformsh\nconfig:\n  id: PROJECTID\n  overrides:\n    app:\n      variables:\n        env:\n          APP_ENV: dev\n        d8settings:\n          skip_permissions_hardening: 1\n    db:\n      configuration:\n        properties:\n          max_allowed_packet: 63\n```\n\nFor more info you should check out the [docs](https://docs.lando.dev/platformsh):\n\n* [Getting Started](https://docs.lando.dev/platformsh/getting-started.html)\n* [Configuration](https://docs.lando.dev/platformsh/config.html)\n* [Tooling](https://docs.lando.dev/platformsh/tooling.html)\n* [Syncing](https://docs.lando.dev/platformsh/syncing.html)\n* [Caveats](https://docs.lando.dev/platformsh/caveats.html)\n* [Guides](https://docs.lando.dev/platformsh/adding-more-tooling.html)\n* [Examples](https://github.com/lando/platformsh/tree/main/examples)\n* [Development](https://docs.lando.dev/platformsh/development.html)\n\n## Issues, Questions and Support\n\nIf you have a question or would like some community support we recommend you [join us on Slack](https://launchpass.com/devwithlando).\n\nIf you'd like to report a bug or submit a feature request then please [use the issue queue](https://github.com/lando/platformsh/issues/new/choose) in this repo.\n\n## Changelog\n\nWe try to log all changes big and small in both [THE CHANGELOG](https://github.com/lando/platformsh/blob/main/CHANGELOG.md) and the [release notes](https://github.com/lando/platformsh/releases).\n\n## Development\n\nIf you're interested in working on this plugin then we recommend you check out the [development guide](https://github.com/lando/platformsh/blob/main/docs/development.md).\n\n\n## Maintainers\n\n* [@pirog](https://github.com/pirog)\n* [@reynoldsalec](https://github.com/reynoldsalec)\n\n## Contributors\n\n\u003ca href=\"https://github.com/lando/platformsh/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=lando/platformsh\" /\u003e\n\u003c/a\u003e\n\nMade with [contributors-img](https://contrib.rocks).\n\n## Other Selected Resources\n\n* [LICENSE](https://github.com/lando/platformsh/blob/main/LICENSE.md)\n* [The best professional advice ever](https://www.youtube.com/watch?v=tkBVDh7my9Q)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flando%2Fplatformsh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flando%2Fplatformsh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flando%2Fplatformsh/lists"}