Skip to content

Commit

Permalink
Update SettingUpTypo3Ddev.rst
Browse files Browse the repository at this point in the history
Since we are on the page "Setting up TYPO3 WITH DDEV"
it is misleading to not see the ddev commands directly in the tab container, so I changed the tab ordering so that the user sees the ddev command first.

Best Regards, MT
  • Loading branch information
mtness authored Aug 2, 2024
1 parent d357bde commit 308a536
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions Documentation/Appendix/SettingUpTypo3Ddev.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,17 +124,17 @@ using the instructions in :ref:`run-tests-directly-without-docker`.

.. tabs::

.. group-tab:: runTests.sh
.. group-tab:: DDEV

.. code-block:: bash
Build/Scripts/runTests.sh -s composerInstall
ddev composer install
.. group-tab:: DDEV
.. group-tab:: runTests.sh

.. code-block:: bash
ddev composer install
Build/Scripts/runTests.sh -s composerInstall
The following is not necessary for the initial build, but once you change some assets (for example
Expand All @@ -143,19 +143,20 @@ now:

.. tabs::

.. group-tab:: runTests.sh
.. group-tab:: DDEV

.. code-block:: bash
Build/Scripts/runTests.sh -s buildCss
Build/Scripts/runTests.sh -s buildJavascript
ddev exec "cd Build && npm ci"
ddev exec "cd Build && npm run build"
.. group-tab:: DDEV
.. group-tab:: runTests.sh

.. code-block:: bash
ddev exec "cd Build && npm ci"
ddev exec "cd Build && npm run build"
Build/Scripts/runTests.sh -s buildCss
Build/Scripts/runTests.sh -s buildJavascript
The first command is required once, the second (build) command is required after
Expand Down

0 comments on commit 308a536

Please sign in to comment.