Here is a quick-start guide to getting your local development environment set up and getting oriented with the project standards and workflows.
You have probably been linked to this documentation by a project that is using BLT to accelerate its development, testing, and deployment. While we strongly recommend exploring all of the BLT documentation, here's what's most important to do and know before getting started:
- BLT is distributed as a Composer package. This means that the project you are working on requires BLT as a dependency in its composer.json file. This also means that you don't need to install or configure BLT globally on your machine, or as a separate tool--simply run
composer install
on the parent project and install a tiny bash alias (as described below), and you're good to go. - You will need some project-specific information to set up your local environment, specifically whether you are using a virtual development environment (e.g., DrupalVM), and the name of your mainline development branch (
develop
ormaster
). This should be referenced in your project's README. - If you need help, check with your project team first, since they may have already encountered any issue you are experiencing. Then post an issue in the BLT issue queue. The issue queue isn't only for bugs--we welcome feedback on all aspects of the developer experience.
- You should verify that your local system and network meet System requirements.
- Because BLT makes use of a variety of best practice development tools and processes (Composer, Git, etc...), you should verify that you have the necessary skillset(s) to develop with BLT.
-
Verify that your system meets the system requirements for BLT
-
Fork the primary GitHub repository for the project you are developing
-
Clone your fork to your local machine (by convention, BLT refers to your fork as "origin" and the primary repo as "upstream"):
git clone [email protected]:username/project-repo.git git remote add upstream [email protected]:acquia-pso/project-repo.git
-
If your project uses separate
master
anddevelop
branches, checkout thedevelop
branch:git checkout develop
-
Run
composer install
(you must already have Composer installed) -
Install
blt
alias:composer run-script blt-alias
. At this point you might need restart your shell in order for the alias work
If your project uses a virtual development environment such as Drupal VM:
- Make sure you have installed any prerequisites. For DrupalVM, see the quick start guide.
- If this is your first time using this project's VM on your machine, execute
blt vm
to provision the VM and set it as the default local development environment. If you've already runblt vm
at least once, you can just usevagrant up
to provision the VM. - SSH into the VM:
vagrant ssh
- Build and install the Drupal installation:
blt setup
If your project does not use a virtual development environment:
- Setup your local LAMP stack with the webroot pointing at you project's
docroot
directory. - Run
blt blt:init:settings
This will generatedocroot/sites/default/settings/local.settings.php
anddocroot/sites/default/local.drushrc.php
. Update these with your local database credentials and your local site URL. - Run
blt setup
. This will build all project dependencies and install drupal.
Please see Local Development for more information on setting up a local *AMP stack or virtual development environment.
As development progresses, you can use the following commands to keep your local environment up to date:
- Run
blt setup
to rebuild the codebase and reinstall your Drupal site (most commonly used early in development). - Run
blt drupal:sync
to rebuild the codebase, import a fresh DB from a remote environment, and run schema/configuration updates (most commonly used later in development).
Each of these commands is simply a wrapper for a number of more granular commands that can be run individually if desired (for instance, blt drupal:update
just runs database updates and imports configuration changes). For a full list of available project tasks, run blt
. See Project Tasks for more information.
For readability of commit history, set your name and email address properly:
git config user.name "Your Name"
git config user.email [email protected]
Ensure that your local email address correctly matches the email address for your Jira account.
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.blt.yml
. Given that these aliases match those in drush/sites/
, you can update the site with BLT.
In order to more easily identify developers in a project, please be sure to set a name and profile picture in your GitHub profile.
When working with GitHub, the hub utility can be helpful when managing forks and pull requests. Installing hub largely depends on your local environment, so please follow the installation instructions accordingly.
Review BLT documentation by role to learn how to perform common project tasks and integrate with third party tools.