fix: simplify DDEV command usage in setup instructions

This commit is contained in:
2025-06-16 12:31:33 +02:00
parent e3c7a18505
commit f36e0d7f72

View File

@@ -128,20 +128,20 @@ This workflow ensures thorough understanding, proper planning, clean implementat
1. **Initial Setup** 1. **Initial Setup**
```bash ```bash
ddev start ddev start
ddev exec composer install ddev composer install
ddev exec npm install ddev npm install
``` ```
2. **Development Build** 2. **Development Build**
```bash ```bash
ddev exec npm run dev ddev npm run dev
``` ```
3. **Production Build** 3. **Production Build**
```bash ```bash
ddev exec npm run build ddev npm run build
``` ```
4. **Clear TYPO3 Cache** 4. **Clear TYPO3 Cache**
```bash ```bash
ddev exec vendor/bin/typo3cms cache:flush ddev typo3cms cache:flush
``` ```
5. **Add a ContentBlock** 5. **Add a ContentBlock**
- Create folder, config, templates, translations - Create folder, config, templates, translations