tomboone/d8-project

This package is abandoned and no longer maintained. No replacement package was suggested.

Project template for Drupal 8 projects with composer

1.4 2019-10-28 21:46 UTC

This package is auto-updated.

Last update: 2021-10-29 02:58:31 UTC


README

This is a customized version of Drupal Composer that removes that project's env settings and adds some requirements I use in every Drupal 8 project:

Installation

To create a Drupal 8 instance from this project, just run:

composer create-project tomboone/d8-project:~1.0 drupal --stability dev --no-interaction

Using with Lando

To use the included Lando config, open .lando.yml and in line 1 replace {LANDOPROJECT} with the name you'd like to give your project. Then run:

lando start

Once the Lando container is up and running, to install a Drupal site, run:

lando drush site-install --db-url=mysql://drupal8:drupal8@database/drupal8

To use the included Bootstrap Sass subtheme, you'll need to initialize it with Compass. The Lando config installs Compass in your container automatically, so to get started, just run the following commands:

cd web/themes/contrib/bootstrap_sass
lando compass init

For additional information about the subtheme, see: https://github.com/tomboone/bootstrap_subtheme