Skip to content

Commit 4c88372

Browse files
committed
[TASK] Unify using ddev --config-option='config-value'
1 parent 0d1f3bb commit 4c88372

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

Documentation/Appendix/SettingUpTypo3Ddev.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,25 +78,25 @@ or edit the configuration file :file:`.ddev/config.yaml` manually.
7878
.. code-block:: shell
7979
8080
# Set correct PHP version:
81-
ddev config --php-version="8.2"
81+
ddev config --php-version='8.2'
8282
8383
# Change to Apache webserver because using htaccess rules works out of the TYPO3-box
8484
# and needs no custom NGINX configuration
85-
ddev config --webserver-type 'apache-fpm'
85+
ddev config --webserver-type='apache-fpm'
8686
8787
# Add necessary packages for the npm build process,
8888
# (only needed if you are working on assets):
89-
ddev config --nodejs-version="22"
90-
ddev config --webimage-extra-packages="automake,build-essential,locales-all"
89+
ddev config --nodejs-version='22'
90+
ddev config --webimage-extra-packages='automake,build-essential,locales-all'
9191
9292
Optionally, set a new HTTP/HTTPS port to avoid conflicts with local defaults.
9393
Error message:
9494
Failed to start t3coredev: Unable to listen on required ports, port 80 is already in use,
9595

9696
.. code-block:: yaml
9797
98-
ddev config --router-http-port="8090"
99-
ddev config --router-https-port="8443"
98+
ddev config --router-http-port='8090'
99+
ddev config --router-https-port='8443'
100100
101101
Start DDEV
102102
==========

Documentation/Quickstart/4-DDEV.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ Quick Start: Set up DDEV
2222
:caption: **Create a suitable ddev configuration**
2323
2424
ddev config \
25-
--project-name 't3c-main' \
26-
--project-type 'typo3' \
27-
--docroot '.' \
28-
--database 'mariadb:10.11' \
29-
--php-version '8.2' \
30-
--composer-version 'stable' \
31-
--nodejs-version '22' \
25+
--project-name='t3c-main' \
26+
--project-type='typo3' \
27+
--docroot='.' \
28+
--database='mariadb:10.11' \
29+
--php-version='8.2' \
30+
--composer-version='stable' \
31+
--nodejs-version='22' \
3232
\
33-
--project-tld 'ddev.site' \
34-
--router-http-port '80' \
35-
--router-https-port '443' \
36-
--webserver-type 'apache-fpm' \
37-
--additional-hostnames 't3c-dev.ddev.site,t3c-prod.ddev.site' \
33+
--project-tld='ddev.site' \
34+
--router-http-port='80' \
35+
--router-https-port='443' \
36+
--webserver-type='apache-fpm' \
37+
--additional-hostnames='t3c-dev.ddev.site,t3c-prod.ddev.site' \
3838
\
39-
--timezone 'Europe/Berlin' \
39+
--timezone='Europe/Berlin' \
4040
--web-environment='TYPO3_CONTEXT=Development' \
4141
--webimage-extra-packages='build-essential,locales-all'
4242

0 commit comments

Comments
 (0)