Skip to content

Latest commit

 

History

History
66 lines (35 loc) · 2.59 KB

project-tasks.md

File metadata and controls

66 lines (35 loc) · 2.59 KB

Project Tasks

“how do I _____ on my local machine?”

(re)Install Drupal

Pre-requisites to installation:

  1. Ensure that docroot/sites/default/settings/local.settings.php exists by executing blt setup:drupal:settings.
  2. Verify that correct local database credentials are set in local.settings.php.
  3. Ensure that project dependencies have already been built via blt source:build

To re-install Drupal, execute: blt drupal:install. Note that this will drop the existing database tables and install Drupal from scratch!

Add, update, or patch a dependency

Please dependency management for all information on managing core and contributed packages for your project.

Deploy to cloud

Please see Deploy for a detailed description of how to deploy to Acquia Cloud.

Run tests & code validation

Please see testing.md for information on running tests.

To execute PHP codesniffer and PHP lint against the project codebase, run:

blt validate:all

Build front end assets

Please see Frontend for information about compiling front end assets and executing front and build processes.

Updating your local environment

The project is configured to update the local environment with a local drush alias and a remote alias as defined in blt/blt.yml or blt/local.yml. Given that these aliases match, those in drush/sites/, you can update the site with BLT. Please see drush/README.md for details on how to create these aliases.

Refresh: Rebuild the codebase, copy the database, and run updates

This all in one command will make sure your local is in sync with the remote site.

blt drupal:sync

This will sync your site and execute all necessary updates afterwards (cache clears, database updates, config imports).

By default, BLT will not sync your public and private files directories. However, you may set sync.files to true in your blt.yml file to perform a file sync during sync:refresh tasks by default within your project.

Multisite

If you are using multisite, you may refresh every single multisite on your local machine by running:

blt drupal:sync:all-sites

Sync: Copy the database from the remote site

blt drupal:sync:db

This will copy and database (and files if sync.files is set to true) but will not execute any updates afterwards.

Update: Run update tasks locally

blt drupal:update

This will execute various update commands (cache clears, db updates, config imports) to bring the local database in light with your codebase (i.e., exported config).