Drupal 8: Common steps to run after deploying code. See https://www.lullabot.com/articles/a-successful-drupal-8-deployment for further details.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# If this is a production deployment script, append: --no-dev --optimize-autoloader --prefer-dist | |
composer install -vvv | |
drush updatedb -y -v | |
drush config-import -y -v |
Hi @nikathone! I am not sure about that one yet. Can you chime in at https://twitter.com/Marinero/status/941673496295493634 ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I usually add
drush entup -y
betweenupdatedb
andconfig-import
.