Learn with DrupalXpert
Guide through the essential steps to set up, understand, and begin Drupal development.
Start Your Journey
Follow our guide to set up your environment, master Git workflows, and use development tools to ensure high quality code.
Environment Setup
Install prerequisites, fork the base repository, and launch your local environment with step-by-step instructions.
Git Workflow Basics
Learn branch types, commit strategies, and best practices to manage your code effectively.
Development Tools
Utilize tools like Code Sniffer, PHPStan, and more to maintain code consistency and quality.
Setting Up Your Development Environment
A proper local development environment is the foundation for successful Drupal development. Follow these steps to install required software, fork the base project, and launch your site.
Prerequisites
Ensure you have the following tools installed on your machine:
-
Docker:
Required to run containerized environments with DDEV.
-
Linux (Ubuntu):
sudo apt-get update && sudo apt-get install docker-ce docker-ce-cli containerd.io
- Windows/Mac: Download Docker Desktop
-
Linux (Ubuntu):
-
DDEV:
Simplifies local development by automating Docker configurations.
-
Linux:
curl -LO https://raw.githubusercontent.com/drud/ddev/master/scripts/install_ddev.sh && bash install_ddev.sh
- Windows/Mac: Installation Instructions
-
Linux:
-
Composer:
PHP dependency manager used for installing Drupal libraries and modules.
-
Linux:
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && php composer-setup.php --install-dir=/usr/local/bin --filename=composer
- Windows: Download Composer
-
Linux:
-
Git:
Essential for version control and collaboration.
-
Linux:
sudo apt-get install git
- Windows/Mac: Download Git
-
Linux:
Forking the Base Project
To start your own project, fork the base repository from GitHub. This repository is located at: DrupalXpert base project
-
Create a Fork on GitHub
Visit the repository on GitHub and click the "Fork" button in the top-right corner to create your personal copy.
-
Clone Your Fork
Clone your forked repository to your local machine. Replace YOUR-USERNAME with your GitHub username:
git clone https://github.com/YOUR-USERNAME/base.git my_project cd my_project
-
Set Up the Upstream Remote
Link your fork to the original repository to easily fetch updates:
git remote add upstream https://github.com/DrupalXpert/base.git
-
Synchronize Your Fork
Regularly update your fork by fetching and merging changes from the upstream repository:
git fetch upstream git checkout develop git merge upstream/develop
Starting Your Local Environment
-
Initialize DDEV
In your project directory, start the containerized environment:
ddev start
-
Install Dependencies
Download all necessary PHP libraries and modules using Composer:
ddev composer install
For more help, refer to the Composer Documentation.
-
Install Drupal
Set up Drupal with a basic configuration and create an admin account. (Change default credentials for production.)
ddev drush site:install --account-name=admin --account-pass=admin -y
-
View Your Site
Launch your site in a browser using the generated local URL:
ddev launch
DDEV provides a secure HTTPS URL for testing functionalities that require a secure connection.
Git Workflow Basics
Our Git workflow is designed to promote best practices, ensure code stability, and streamline collaboration. Learn about branch types, commit strategies, and merging techniques.
Branch Types
- main: The stable production branch. All code here is fully tested and ready for deployment.
- develop: The primary branch for integrating new features and ongoing development.
- feature/: Branches created from develop to work on new features.
- release/: Branches used for final testing and preparation before production releases.
- hotfix/: Branches for urgent fixes in the production environment.
Workflow Steps
-
Create a Feature Branch
Start by creating a new branch from develop for your feature:
git checkout develop git checkout -b feature/your-feature
-
Commit Changes Frequently
Make small, descriptive commits with clear messages that explain your changes.
-
Merge Your Feature Branch
Before merging, update your develop branch and merge your changes:
git pull origin develop git push
-
Open a Pull Request
Submit your branch for review via a pull request on GitHub.
Best Practices
- Use clear, descriptive branch names (e.g., feature/login-system).
- Keep your develop branch updated before creating new feature branches.
- Commit small, logical changes with concise messages.
- Frequently merge updates from develop into your feature branch to avoid conflicts.
Development Tools
To ensure code quality and streamline development, we use the following tools as part of our workflow:
-
Code Formatter:
Automatically fixes coding standards issues in PHP files for a consistent code style.
ddev phpcbf
-
Code Sniffer:
Analyzes PHP files for coding standards violations and reports issues without modifying files.
ddev phpcs
-
PHPStan for Static Analysis:
Performs static analysis on PHP code to detect potential errors.
ddev phpstan
-
Twig Code Sniffer:
Checks Twig templates to ensure they adhere to coding standards.
ddev twigcs
-
Configuration Export:
Exports all configuration changes to code, making site settings version controllable.
ddev cex
-
Configuration Import:
Imports configuration from code, ensuring your site matches the committed settings.
ddev cim
-
Cache Rebuild:
Clears and rebuilds caches so that all changes are reflected immediately.
ddev cr
-
Testing Frameworks:
Run PHPUnit (or Behat) tests to verify code reliability.
ddev exec vendor/bin/phpunit
-
Development Mode:
Disable caching and enable debugging to optimize development workflows.
ddev drush state:set system.performance css.preprocess 0
ddev drush state:set system.performance js.preprocess 0