The preferred way to manage Drupal 8 sites is to use composer, and the Drupal Composer project helps integrate Drupal core with composer.
This repository provides a quick start wrapper around Drupal Composer and includes common configuration and recommended modules for Deeson Drupal 8 projects.
Quick-start projects use composer for dependency management, including Drupal core, contrib and 3rd party libraries. The contents of docroot/ should be considered expendable during development and can be recompiled from the contents of the repository.
We use Docker and Docker compose for managing local development and this repository comes with some default configuration for working with Docker. You are of course free to use alternatives, but additional configuration may be required.
For drush to work with Docker, you'll need to add the following line to your /etc/hosts file:
127.0.0.1 docker.local
You do not need to clone this repo, our quick start is checked out using composer.
First you need to install composer.
Then you can create a new project using composer, keep the project name short and without punctuation (e.g. myproject)
composer create-project teamdeeson/d8-quickstart <project-name> --stability dev --no-interactionYou should now create a new git repository, and commit all files not excluded by the .gitignore file.
git init
git add .
git commit -m "Created the project."You should check through all of the services and settings files and make any required amendments. The following amendments need to be made at a minimum:
.env: Add your project name in here, use the same one as used with composer (e.g. myproject)
src/settings/environment.inc: Configure your domain names
src/settings/01-core.settings.inc: Configure a hash salt. See http://drupalhashsalt.com/
src/settings/02-shield.settings.inc: Configure basic-auth access details to protect your dev sites.
At Deeson we use Makefiles to orchestrate any additional tasks such as building dependencies and running tests.
This ensures we have a universal mechanism for task running across all of our projects.
The project can be built using the included Makefile.
makewill build the project based on the assumed environment. This will create the docroot/ folder and build your website.
You can specify the environment explicitly with the ENVIRONMENT variable which will add or remove dev dependencies:
make build ENVIRONMENT=devmake build ENVIRONMENT=prodYou can also safely remove your docroot at any point if you need to:
make cleanOnce you have run the build for the first time, you can setup and run your Docker environment using the following command.
make docker-up
You should now be able to access a vanilla Drupal site at http://localhost
You can now run the Drupal installation, either through the interface or from the command line using:
make installwill install the site and associated configuration. You will be prompted to optionally perform a site install. If you proceed this will erase your existing site database.
You can stop the docker environment at any time using the command below:
make docker-down
Your site files and database will be stored outside of docker in the .persist hidden directory.
All of your dependencies should be managed through composer. This includes any off-the-shelf code such as Drupal core, contrib modules and themes, and any 3rd party libraries.
composer require drupal/redirectcomposer update drupal/redirectcomposer update drupal/core --with-dependenciesYou should commit your composer.lock file to the repository as this will guarantee that any subsequent builds will use the same exact version of all your dependencies.
For further details, see the Drupal Composer project documentation:
https://github.com/drupal-composer/drupal-project#composer-template-for-drupal-projects
Composer project usage guide:
https://getcomposer.org/doc/01-basic-usage.md
You need to run sudo ifconfig lo0 alias 10.254.254.254 before xdebug connections will work. This is usually required each time you log-in to your development machine, but is safe to run periodically.
This repository contains the starting point for running both Behat and PHPUnit test suites as well as Drupal coding standards checks with PHPCS.
PHPUnit tests should be defined within you custom modules, in the tests/ sub-directory.
Behat tests should be defined in the behat-tests directory in the project root.
make testwill run all of the Project's automated tests.
This contains all of the Behat tests for your project.
This contains Drupal's CMI configuration files.
This directory contains compiled content and should not normally be committed to your repository.
This contains your drush site aliases file(s).
This contains all of your project source code. As follows:
For all your front end needs. This makes use of our front end setup, you can find out how here : https://github.com/teamdeeson/deeson-webpack-config
This is where you place your custom modules.
Anything within src/modules/ will be made available in docroot/modules/custom/
You can define your services YAML files here.
This contains the Drupal site settings, extracted from settings.php as per: http://handbook.deeson.co.uk/development/drupal8/#settings-file-configuration
This has been moved from either sites/default/settings/ or sites/conf/ mentioned in the blog post.
settings.php will be made available in docroot/sites/default/. All other files will be included in-place by settings.php.
This is where you place your custom theme(s).
Anything within src/themes/ will be made available in docroot/themes/custom/
The default hook up between drupal and src/frontend. Your theme can either inherit from this or follow the instructions from https://github.com/teamdeeson/deeson-webpack-config to do it yourself (its not tricky).
This is for any compilation or deployment scripts you may want to add.
These need to be included in your settings file in the usual way:
$settings['container_yamls'][] = dirname(DRUPAL_ROOT) . '/src/services/development.services.yml';This is the composer vendor directory, which contains project dependencies, tools and libraries. This should be excluded from your repository.
This and docroot/ are symlinked to the same location for wider compatibility and should also be excluded from your repository.
You can use the docker-compose tool as a shortcut for common docker commands. To run a command within one of the containers you can use:
docker-compose exec <container-name> <command>For example to start a mysql client on the database container (mariadb) run:
docker-compose exec mariadb mysqlYou can also use the more standard docker commands.
To list the active Docker instances run the following in the project root directory:
docker-compose psTo get a bash terminal inside the PHP container you can use the following:
docker-compose exec phpTo import an exported site database into the database container (if you don't have pv installed you can do so with brew install pv):
pv database_export_filename.sql | docker exec -i a7162120bee8 mysql -udrupal -pdrupal drupalReplace the hash with the instance hash for the docker instance you want to get a terminal prompt for. You can find out that using the docker ps command to list active instances.