diff --git a/.ddev/commands/web/app b/.ddev/commands/web/app index 4fa5e1f..0af2539 100755 --- a/.ddev/commands/web/app +++ b/.ddev/commands/web/app @@ -11,11 +11,16 @@ if [ $# -eq 0 ] ; then fi case $1 in - install|refresh) + install) drush site:install -y --account-pass=admin123 --existing-config drush user:login ;; + refresh) + drush config-import -y + drush cache-rebuild + ;; + *) echo "Invalid argument: $1" ;;