Note: This page applies to the Last Call Media Drupal Scaffold project. Use this documentation to get a new project started, not for working on an existing project.
- Use composer to create a new project, starting from this repository as a template:
composer create-project lastcall/drupal-scaffold PROJECTNAME
- Bring up the Docker containers and enter the Drupal container.
docker-compose up -d drupal docker-compose exec drupal /bin/bash
- From the repository root (
/var/www
inside the Drupal container), install NPM and composer dependencies:yarn install composer install
- Visit the Drupal site in your browser to install Drupal and continue. The default URL will be
http://localhost:8080
.
As soon as you're up and running, you will want to remove the references to the "scaffold" nature of this project and make it your own.
- Set the name of your project under the
name
key incomposer.json
andpackage.json
. You don't ever need to publish the project using Composer or NPM, but it will help new developers get oriented. - Rename the
scaffold
theme to something that fits your project. - Open
docker/drupal.env
and set the environment variables there. - Open
web/private/scripts/deploy-steps.php
and choose the deployment steps you want to use. - Copy
.env.example
to.env
and optionally set the variables in this file. This file should not be committed. - Customize README.md by renaming, and removing everything above the horizontal rule.
Upgrading an older project is a very manual process - once you start a project, the files are yours to customize. However, we'll do our best to document the upgrade process:
- Run
composer require --no-update lastcall/composer-upstream-files:^1.1.1 --dev
to add thecomposer-upstream-files
package. - Add the
upstream-files
section ofcomposer.json
to yourcomposer.json
file. - Add the
scripts
section ofcomposer.json
to yourcomposer.json
file. - Add the
autoload
section ofcomposer.json
to yourcomposer.json
file. - Run
composer update lastcall/composer-upstream-files
to update yourcomposer.lock
- Run
composer upstream-files:update
to pull down the latest versions of all scaffold files and quasi-core files. REVIEW CAREFULLY BEFORE COMMITTING - you will definitely need to revert or manually merge some of the files. - Run
yarn install
to install NPM dependencies and create ayarn.lock
file. - Cleanup any leftover files:
rm -rf default.behat.local.yml ci package-lock.json backstop phantomas ci circle.yml .travis.yml docker-compose.debug.yml web/drush
- Open
docker/drupal.env
and set the environment variables there. - Copy
.env.example
to.env
and optionally set the variables in this file. This file should not be committed. - In CircleCI, add the
TERMINUS_MACHINE_TOKEN
variable (previously known asPMACHINE
). - Push a new
p-
branch to GitHub to trigger a circle build, and create a new PR to review your changes. - Once your PR is merged, you can remove the
PMACHINE
token.
This tool is pre-configured for use on Pantheon. Using it on Acquia or another host may require some adjustment of the docroot folder (currently web/). We've tried to comment with "@docroot" in any locations where the docroot path is hard-coded to web/.