Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update SettingUpTypo3Ddev.rst #353

Merged
merged 3 commits into from
Aug 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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