Skip to content

Instantly share code, notes, and snippets.

@vergissberlin
vergissberlin / rollup.sh
Created February 3, 2023 15:31
Start new TYPO3 CMS with ddev and introduction package. Run it with `sh rollup.sh 11` to install TYPO3 in version 11
mkdir -p typo3-${1:-11}&&\
cd typo3-${1:-11} &&\
ddev config --project-type=typo3 --docroot=public --create-docroot &&\
ddev config --php-version 8.1 &&\
ddev composer create "typo3/cms-base-distribution:^${1:-11}" &&\
ddev exec touch public/FIRST_INSTALL &&\
ddev start &&\
ddev typo3cms install:setup \
--force \
--no-interaction \