From b3ae519ab49082cee610bea7d2da22ae2ffa4062 Mon Sep 17 00:00:00 2001 From: Tomas Norre Mikkelsen Date: Fri, 22 May 2026 07:55:11 +0200 Subject: [PATCH] Update TYPO3 setup command to include sitename When running command ``` ddev typo3 setup --server-type=other --driver=mysqli --host=db --port=3306 --dbname=db --username=db --password=db --create-site ``` I get the error ``` The "--create-site" option requires a value. ``` --- Documentation/Quickstart/_installation_ddev.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Quickstart/_installation_ddev.sh b/Documentation/Quickstart/_installation_ddev.sh index 48e27288..9367973c 100644 --- a/Documentation/Quickstart/_installation_ddev.sh +++ b/Documentation/Quickstart/_installation_ddev.sh @@ -12,7 +12,7 @@ ddev composer create-project "typo3/cms-base-distribution:^14" # Recommended: Require the default theme ddev composer req typo3/theme-camino # Run TYPO3 CLI setup (database credentials are pre-filled) -ddev typo3 setup --server-type=other --driver=mysqli --host=db --port=3306 --dbname=db --username=db --password=db --create-site +ddev typo3 setup --server-type=other --driver=mysqli --host=db --port=3306 --dbname=db --username=db --password=db --create-site # Open the Backend login in a browser ddev launch /typo3/