{"id":14968654,"url":"https://github.com/inviqa/drupal-startup","last_synced_at":"2026-01-25T07:03:52.765Z","repository":{"id":56992832,"uuid":"171311508","full_name":"inviqa/drupal-startup","owner":"inviqa","description":"Drupal startup - project skeleton w/ Lando dev stack, example tests, config and modules.","archived":false,"fork":false,"pushed_at":"2019-03-21T13:32:09.000Z","size":325,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":7,"default_branch":"develop","last_synced_at":"2025-11-20T17:34:22.088Z","etag":null,"topics":["drupal","drupal8","lando"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/inviqa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-02-18T15:48:39.000Z","updated_at":"2019-03-15T13:36:40.000Z","dependencies_parsed_at":"2022-08-21T10:40:50.712Z","dependency_job_id":null,"html_url":"https://github.com/inviqa/drupal-startup","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/inviqa/drupal-startup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inviqa%2Fdrupal-startup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inviqa%2Fdrupal-startup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inviqa%2Fdrupal-startup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inviqa%2Fdrupal-startup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/inviqa","download_url":"https://codeload.github.com/inviqa/drupal-startup/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inviqa%2Fdrupal-startup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28747308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T05:12:38.112Z","status":"ssl_error","status_checked_at":"2026-01-25T05:04:50.338Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["drupal","drupal8","lando"],"created_at":"2024-09-24T13:40:21.683Z","updated_at":"2026-01-25T07:03:52.744Z","avatar_url":"https://github.com/inviqa.png","language":"PHP","readme":"```\n ____ _____  _    ____ _____ _   _ ____\n/ ___|_   _|/ \\  |  _ \\_   _| | | |  _ \\\n\\___ \\ | | / _ \\ | |_) || | | | | | |_) |\n ___) || |/ ___ \\|  _ \u003c | | | |_| |  __/\n|____/ |_/_/   \\_\\_| \\_\\|_|  \\___/|_|\n\n########################################\n```\n\n[![Codeship Status for inviqa/drupal-startup](https://app.codeship.com/projects/0e9dd740-1689-0137-368c-02228243811b/status?branch=develop)](https://app.codeship.com/projects/327924)\n\n# Drupal 8 / Lando flavoured project template\n\nThis project should be used as a skeleton starting point for new Drupal 8 based projects. As such some assumptions\nand opinionated decisions are included to bootstrap a project with everything you might need to get started!\n\n...delete as appropriate!\n\n## Start me up\n\nStart-up your `newproject` in the current directory using composer:\n\n`composer create-project --no-install -s dev inviqa/drupal-startup newproject`\n\nUpdate the `.gitignore` in the project root\n\n## Project structure\n\nThe tree below outlines the project structure and purpose.\n\n```bash\nnewproject\n|\n├── conf # container related config (eg. solr)\n├── config\n|   └── sync # Drupal config files\n|\n├── doc # Project related documentation\n|\n├── docroot\n|   ├── modules\n|   |   └── custom # Custom modules\n|   ├── profiles\n|   |   └── custom # Custom install profiles\n|   ├── sites\n|   |   └── default # Default site settings\n|   └── themes\n|       └── custom # Custom themes\n|\n├── scripts\n|   ├── deployment # Shell scripts for deployment\n|   ├── development # Shell scripts for local dev\n|   └── common.inc.sh # Shared scripts for all environments\n|\n└── test\n    └── behat # Behat tests\n```\n\n\n## Development Environment\n\n### Prerequisites\n\n1. Install Docker-for-mac\n2. Install [Lando](https://docs.devwithlando.io/installation/installing.html).\n\n**Note: Compatible with v3.0.0-rc1 and below**\n\n### Setup\n\nRun `lando start` from within the project directory.\n\n### Tooling\n\n| Command                                       | Description                                             |\n|---                                            |---                                                      |\n|`lando install`                                |Install Drupal site                                      |\n|`lando reset`                                  |Reset codebase removing generated code and lock file     |\n|`lando refresh`                                |Refresh your project (clear cache, import config etc...) |\n|`lando composer {install}, {require} etc.`     |Run composer commands in the appserver container         |\n|`lando drush {cr}, {site-install} etc.`        |Run drush commands in the appserver container            |\n|`lando phpcs`                                  |Run code style analysis _see ./phpcs.xml.dist for scope_ |\n|`lando phpunit`                                |Run phpunit tests _see ./phpunit.xml.dist for scope_     |\n|`lando behat`                                  |Run behat test suite                                     |\n|`lando test`                                   |Run all tests and code evaluation                        |\n|`lando npm`                                    |Run NPM commands                                         |\n\nFor further lando related commands see: https://docs.devwithlando.io/config/tooling.html\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finviqa%2Fdrupal-startup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finviqa%2Fdrupal-startup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finviqa%2Fdrupal-startup/lists"}