Set up a development stack

The word “stack” refers to the web software that’s needed to work with Craft CMS, which is detailed in Craft’s minimum requirements.

Like your workstation, a web server can run different operating systems and apps. Web servers, however, use an OS and software specifically for running sites. Common bundles of web software are referred to as “stacks.” (You’ve probably heard of a “full stack developer”, which means someone having experience with each of the software components of a particular stack.)

Craft can run on a few different stacks, but the main ingredients are:

  • PHP – programming language in which Craft is written.
  • A database – place where content is stored, sort of like a collection of Excel files used by code that can work with lots of data quickly. Commonly MySQL or PostgreSQL.
  • A web server – software that listens for requests made by your web browser, hands them off to a web application (like Craft), and gives a response back to the browser. Typically Nginx or Apache.

There are several cross-platform local development tools that package all of these together, for example:

Craft works with each of these and more, so if you already have a preferred stack that meets Craft’s requirements, feel free to stick with it. For the purposes of this tutorial, we’re going to assume you’re using DDEV (opens new window), as it’s quickly becoming a favorite among the Craft and PHP communities.

Instructions for installing DDEV are available in the DDEV documentation (opens new window).

Make sure you’re running DDEV 1.21.4 or later. You can check which version you’re currently running with the following command:

ddev -v