This Extension provides content elements to inset js and css. The <script> and tags will get nonces, so when using 'nonce-proxy' in csp.yaml for js/css, inserted blocks are CSP conform.
We use ddev for typo3 extensions
Currently available in ddev is
- TYPO3 13.4 LTS
- TYPO3 14.3 LTS
The following software must be installed on the host machine:
- Docker
- Docker Compose
- DDEV
An internet connection is required during the initial setup to download images and Composer packages. After that, the environment can also be used offline in most cases.
With the .ddev directory in place, start the project with:
ddev startThis starts the containers, but it does not install any TYPO3 instance automatically.
The setup provides dedicated DDEV commands for provisioning separate TYPO3 instances:
ddev install-v13
ddev install-v14To install both environments in one step, run:
ddev install-allEach installation is created in its own directory inside the web container:
v13for TYPO3 13.4v14for TYPO3 14.3
After the installation, the overview page is available at:
The TYPO3 installations are available here:
All TYPO3 instances use the same backend and install tool credentials:
- Username:
admin - Password:
Password:joh316
You can run TYPO3 CLI commands directly inside each installation:
ddev exec v13/vendor/bin/typo3
ddev exec v14/vendor/bin/typo3TYPO3 14 also includes helhum/typo3-console as part of the installation.
To delete the DDEV project and its containers, run:
ddev delete -Oy