You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
- set -e
-
- echo "⏳ Tenant-Schemas aktualisieren (nur ADD, kein DROP)..."
- ddev exec php bin/console app:update-tenant-schema
-
- echo "⏳ Cache leeren..."
- ddev exec php bin/console cache:clear
-
- echo "⏳ Assets bauen..."
- ddev exec npm run build
-
- echo "✅ Fertig!"
|