Starter repo for Drupal 8 development. This starter is an opinionated approach, with the following concepts and tools:
- ddev should be the only requirement, and
every operation should happen inside ddev's containers. For example, one should
not ever need to execute commands such as
composer install
from the host machine. Instead we haveddev composer install
. The advantage is that we have a consistent, reproducible and shareable environment, so developers don't have to lose time over configuration of their host machine. - Robo is the task manager, and is favored over Bash scripts. The reason for this is that it's assumed PHP developers are more comfortable with PHP than Bash, and it provides us with easier iteration, reading and manipulating yaml files, pre-defined tasks, etc.
- We use Travis-CI for continuous integration. A pre-configured and working
.travis.yaml
is part of this repo. - We use Pantheon for hosting. A
ddev robo deploy:pantheon
will take care of deployments. See more under "Deploy to Pantheon" section.
- DDEV
- Optional but recommended: follow the "mkcert" installation notes for local SSL
ddev composer install
cp .ddev/config.local.yaml.example .ddev/config.local.yaml
ddev restart
If you had a previous installation of this repo, and have an error similar to composer [install] failed, composer command failed: failed to load any docker-compose.*y*l files in /XXX/multi-repo/.ddev: err=<nil>. stderr=
then execute the following, and re-try installation steps.
ddev rm --unlist
By default, ddev restart
compiles the theme using Robo.
On the local development environment, which is using TailWind, execute:
ddev robo theme:compile-debug
This will compile TailWind with all the classes, copy any fonts, images, etc.
When running ddev robo theme:complie
it will purge any TailWind's CSS class
which is not found in the code, twig, or under tailwind.config.js
whitelist
property.
The directory structure:
src/
- put all source stylesheets images, fonts, etc here.dist/
-.gitignore
-ed path where the compiled / optimized files live, the theme should refer the assets from that directory.
For theme development, it's advisable to entirely turn off caching: https://www.drupal.org/node/2598914
The starter kit comes out of the box with ElasticSearch. Search API is activated and DDEV provides an ElasticSearch instance, already configured to use a stopwords and a synonyms list. Also it creates 4 indices (QA, DEV, TEST and LIVE) to reflect our typical Pantheon setup. The site inside DDEV will use the DEV index. To take a look, you can check these first:
- https://drupal-starter.ddev.site:9201/
- https://drupal-starter.ddev.site:9201/\_cat/indices - list of all indices
- https://drupal-starter.ddev.site:9201/\_search - list of all documents
ddev phpcs
For testing we use Drupal Test Traits (DTT), as it allows a very fast and convinent way of testing existing installation profiles. See the example test.
ddev phpunit
First we need to allow DDEV to authenticate with terminus. This is a one time action you need to take, and it will apply for all your projects. See docs here
In short, create a Machine token and then
ddev auth pantheon <YOUR TOKEN>
Then, you can create a new site in Pantheon which can also be done with a terminus command:
ddev exec terminus site:create my-site "My Site" "Drupal 8"
To allow Pantheon to work with composer managed sites and recognize the web
directory, we need to follow the Pantheon instructions
When following the instructions, clone the pantheon repository in the required location with this commmand:
git clone ssh://codeserver.dev.<long-hash>.drush.in:2222/~/repository.git .pantheon
In order to successfully install and import configuration you will need to add the
config directory in the web/sites/default/settings.php
file:
$settings['config_sync_directory'] = dirname(DRUPAL_ROOT) . '/config/sync';
In case you haven't done so before, make the DDEV container aware of your ssh
ddev auth ssh
Then you can deploy with
ddev robo deploy:pantheon
After first deploy, you will want to install the site:
ddev robo deploy:pantheon-install-env dev
This command is also useful if a deployment got stuck due to non-deployable config changes, so it can reboot the environment from scratch.
During the deployments, web/sites/default/settings.pantheon.php
gets copied
to web/sites/default/settings.php
into the Pantheon repository, so any kind
of configuration override (SMTP credentials, dev mode alterations) can be
injected to that file.
To Deploy to a Pantheon environment (e.g. TEST or LIVE) you can use
# With no argument, deploys to TEST.
ddev robo deploy:pantheon-sync
# Deploy to LIVE.
ddev robo deploy:pantheon-sync live
Deployments should imply a release, you can generate a release notes based on tags. You can generate a changelog using
ddev robo generate:release-notes
Or you can specify a tag that's the base of the comparison.
ddev robo generate:release-notes 0.1.2
One line in the changelog reflects one merged pull requests and the command assembles it from the Git log.
In order to deploy upon every merge automatically by Travis, you shall:
- Get a Pantheon machine token (using a dummy new Pantheon user ideally, one user per project for the sake of security): https://pantheon.io/docs/machine-tokens
ddev robo deploy:config-autodeploy [your new token] [pantheon project name]
git commit -m "Deployment secrets and configuration"
- Add the public key in
travis-key.pub
to the newly created dummy Pantheon user: https://pantheon.io/docs/ssh-keys
Optionally you can specify which target branch you'd like to push on Pantheon, by default it's master
, so the target is the DEV environment, but alternatively you can issue:
ddev robo deploy:config-autodeploy [your new token] [pantheon project name] [gh_branch] [pantheon_branch]
To set the Pantheon environment to be pulled from to LIVE
, execute
ddev auth pantheon [token]
ddev config pantheon --pantheon-environment=live
This will update the .gitignore
d file in .ddev/import.yaml
# Terminus authentication expires every 24 hours.
ddev auth pantheon [token]
# Pull DB & Files
ddev pull