From 50264d9939169f4887ceb7527c1f3e88f738c70f Mon Sep 17 00:00:00 2001 From: August Miller Date: Tue, 6 Feb 2024 23:40:07 -0800 Subject: [PATCH] Simplified DDEV instructions, now that .ddev is checked in --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f3d03c25..d51dc1d9 100644 --- a/README.md +++ b/README.md @@ -60,13 +60,12 @@ docker-compose exec web php craft users/create --admin ### DDEV -[DDEV](https://ddev.com/) is our recommended local development environment, for Craft developers at any level of experience. Our [quick-start guide](https://craftcms.com/docs/5.x/install.html) covers this process in detail—but here are the commands adapted for this project: +[DDEV](https://ddev.com/) is our recommended local development environment, for Craft developers at any level of experience. Our [quick-start guide](https://craftcms.com/docs/5.x/install.html) covers this process in detail—but we’ve done the config for you, so all that’s required is… ```bash git clone https://github.com/craftcms/europa-museum.git cd europa-museum -ddev config --project-type=craftcms --docroot=web --database=postgres:13 -ddev composer install +ddev start ddev craft db/restore seed.sql ```