Skip to content
Open
Changes from 1 commit
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
7 changes: 5 additions & 2 deletions .ddev/config.local.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ hooks:
# @see https://www.drupal.org/node/947312
- exec: drush user-block --uid=1

# Run deploy hooks.
- exec: drush deploy:hook --no-interaction

# Make sure PHP CLI has no memory limit, this is
# especially for unit testing.
# Web requests should be still limited, as the
Expand All @@ -56,8 +59,8 @@ hooks:
- exec-host: ddev login

post-import-db:
# Run DB updates.
- exec: drush updb
# Run deploy hooks.
- exec: drush deploy:hook --no-interaction
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should preserve drush updb, shouldn't we?
Also this should be the last step, after config import, see the Robo logic.

# Clear cache before config import.
- exec: drush cr
# Import config.
Expand Down