How-to-install-Drupal-CMS

How to install Drupal CMS

Let’s get started by creating a sandbox on your computer. Instead of jumping straight into building online, you’ll create a local space on your computer where you can experiment, make mistakes (it’s okay, we all do!), and discover how Drupal CMS works–no pressure!

In this tutorial, we’ll walk through how to set up this space using DDEV, a tool that makes it possible to build out your site at your own pace. It will help you get your Drupal CMS workspace up and running without you needing to know all of the technical details.

Before starting with Drupal CMS  installation, ensure the system requirements are fulfilled. Let’s dive into each of them with the minimum version supported:

Prerequisites

  • Docker: Using Docker to install Drupal is a streamlined way to manage your development setup. It lets you containerize Drupal and its dependencies, making your environment consistent and portable.
  • DDEV: DDEV is a fantastic tool for setting up and managing local development environments for Drupal projects.
  • Git:  Git is a powerful distributed version control system that helps developers track changes in their code, collaborate with others, and manage projects efficiently. (optional but recommended).

Step 1: Install DDEV

  1. Download and install Docker from Docker’s official website.
  2. Install DDEV by following the installation guide for your operating system.
  3. Verify installation by running:
ddev --version

If DDEV is installed correctly, you will see its version number.

 

Step 2: Create a New Drupal Project

To create a Drupal project, we will go to the path of the system where we will create our project. And we will open our command prompt or terminal where we can run our command. To create project  run the following command: 

drupal-install

 

After running 'create project command' you have a project folder with name of CMS, it's your project directory enter into it .

cd cms
cms

 

Insure you are in 'project directory'. After that we'll configure DDEV in our project by running the following command:

DDEV Config
ddev-config

 

When you run 'Configuration Command', it will ask you for some information to setup your project like:

  1. Project name: Your Project Name (according to you)
  2. Root Location: Web
  3. project type: Drupal

After this, run 'ddev start command', The 'ddev start command' initializes and starts the DDEV-managed Docker containers, creating a local environment tailored for your project. It also provides a local URL to access and develop your Drupal site.

ddev start
ddev-start

 

 

Now, Our project setup has been completed but we are not ready to run it yet. To run it, we will have to install the Drupal project packages with the help of 'composer'. 

ddev composer install
composer-install

 

Once the required packages are installed  we will restart DDEV.

ddev restart
ddev-restart

 

Now the project is  installed and ready to run. Copy  URL and Open it in your browser, your project is ready.

drupal-cms

Shishupal Rajput

Hi, I'm Shishupal Rajput, a passionate Drupal developer with expertise in building and customizing Drupal websites. I specialize in Drupal theming, module development, and Drupal Commerce. Through my blog, I share insights, tips, and tutorials to help developers and site builders enhance their Drupal projects. Stay tuned for the latest Drupal updates and best practices!