This project template should provide a kickstart for managing your site dependencies with Composer. It is based on the amazee.io Drupal Example Simple template, and should include everything necessary to run on amazee.io (either the local development environment or on amazee.io servers.)
OR
-
Checkout this project repo and confirm the path is in Docker's file sharing config - https://docs.docker.com/docker-for-mac/#file-sharing
git clone https://github.com/workshop-orange/template-drupal8-opensocial-lagoon.git opensocial-d8-lagoon && cd $_
-
Make sure you don't have anything running on port 80 on the host machine (like a web server) then run
pygmy up
-
Build and start the build images:
docker-compose up -d docker-compose exec -e COMPOSER_MEMORY_LIMIT=-1 cli composer install
-
(Optional) Install your OpenSocial site with Drush:
docker-compose exec cli drush si social -y
You can skip this step to use the web installer.
-
Visit the new site @
http://template-drupal8-opensocial-lagoon.docker.amazee.io
-
(Optional) Do you want demo content in a pygmy environment?
docker-compose exec cli drush pm-enable social_demo -y
docker-compose exec cli drush cc drush
docker-compose exec cli drush demo-content-add file user group topic event event_enrollment comment post like
Read more about demo Open Social content at Drupal.org
- If any steps fail, you're safe to rerun from any point. Starting again from the beginning will just reconfirm the changes.
This repository is set up with a .lando.yml
file, which allows you to use Lando instead of pygmy for your local development environment.
-
Checkout the project repo and confirm the path is in Docker's file sharing config - https://docs.docker.com/docker-for-mac/#file-sharing
git clone https://github.com/amazeeio/template-drupal8-opensocial-lagoon.git drupal9-lagoon && cd $_
-
Make sure you have pygmy stopped. Run
pygmy stop
to be sure. -
We already have a Lando file in this repository, so we just need to run the following command to get Lando up:
lando start
- (Optional) Install your OpenSocial site with Drush:
lando drush si social -y
You can skip this step to use the web installer.
-
And now we have a fully working local Open Social site on Lando! For more information on how to deploy your site, check out our documentation or our deployment demo.
-
(Optional) Do you want demo content in a lando environment?
lando drush pm-enable social_demo -y
lando drush cc drush
lando drush demo-content-add file user group topic event event_enrollment comment post like
Read more about demo Open Social content at Drupal.org
When installing the given composer.json
some tasks are taken care of:
- Drupal will be installed in the
web
-directory. - Autoloader is implemented to use the generated composer autoloader in
vendor/autoload.php
, instead of the one provided by Drupal (web/vendor/autoload.php
). - Modules (packages of type
drupal-module
) will be placed inweb/modules/contrib/
- Themes (packages of type
drupal-theme
) will be placed inweb/themes/contrib/
- Profiles (packages of type
drupal-profile
) will be placed inweb/profiles/contrib/
(Open Social ends up in here!) - Creates the
web/sites/default/files
-directory. - Latest version of drush is installed locally for use at
vendor/bin/drush
. - Latest version of Drupal Console is installed locally for use at
vendor/bin/drupal
. - The correct scaffolding for your Drupal core version is installed, along with Lagoon-specific scaffolding from our amazeeio/drupal-integrations project and the
assets/
directory in this repo. For more information see drupal/core-composer-scaffold - Open Social is patched so that the social_demo module drush commands are detcted
This still needs to be figured out. Now accepting PRs.
Composer recommends no. They provide argumentation against but also workarounds if a project decides to do it anyway.
If you need to apply patches (depending on the project being modified, a pull request is often a better solution), you can do so with the composer-patches plugin.
To add a patch to drupal module foobar insert the patches section in the extra section of composer.json:
"extra": {
"patches": {
"drupal/foobar": {
"Patch description": "URL to patch"
}
}
}