localgov_microsites_project
LocalGov Drupal Microsites Composer project template
This project template provides a starter kit for managing your LocalGov Drupal Microsites dependencies with Composer.
Usage
First you need to [install Composer](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx).
After that you can create the project:
composer create-project --stability stable drupal/localgov_microsites_project:^4.0 MY_PROJECT --no-install
Using Lando
If using Lando, you can then boot up Lando and run the site install
cd MY_PROJECT
lando start
lando composer install
lando drush si localgov_microsites -y
Using DDEV
If using ddev, you can then boot up ddev and run the site install
cd MY_PROJECT
ddev start
ddev composer install
ddev drush si localgov_microsites -y
Using host machine
If you're working directly on your host machine, you'll still need to run the composer install.
cd MY_PROJECTy
composer install
drush si localgov_microsites -
See the README.md for more information.