From f36e0d7f723cd3bbca0c44a4f3a44c5a2e462578 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Mon, 16 Jun 2025 12:31:33 +0200 Subject: [PATCH] fix: simplify DDEV command usage in setup instructions --- .roo/rules/rules.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.roo/rules/rules.md b/.roo/rules/rules.md index 865adb9..1e2a500 100644 --- a/.roo/rules/rules.md +++ b/.roo/rules/rules.md @@ -128,20 +128,20 @@ This workflow ensures thorough understanding, proper planning, clean implementat 1. **Initial Setup** ```bash ddev start - ddev exec composer install - ddev exec npm install + ddev composer install + ddev npm install ``` 2. **Development Build** ```bash - ddev exec npm run dev + ddev npm run dev ``` 3. **Production Build** ```bash - ddev exec npm run build + ddev npm run build ``` 4. **Clear TYPO3 Cache** ```bash - ddev exec vendor/bin/typo3cms cache:flush + ddev typo3cms cache:flush ``` 5. **Add a ContentBlock** - Create folder, config, templates, translations