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.
 
 
 
 
 

14 rivejä
273 B

  1. #!/bin/bash
  2. set -e
  3. echo "⏳ Tenant-Schemas aktualisieren (nur ADD, kein DROP)..."
  4. ddev exec php bin/console app:update-tenant-schema
  5. echo "⏳ Cache leeren..."
  6. ddev exec php bin/console cache:clear
  7. echo "⏳ Assets bauen..."
  8. ddev exec npm run build
  9. echo "✅ Fertig!"