oliverdavies.uk-drupal-old/bin/install.sh

16 lines
333 B
Bash
Raw Normal View History

2020-04-10 08:57:54 +00:00
#!/usr/bin/env bash
set -e
. $(dirname "$0")/common.sh
run_command "Install Composer dependencies" "symfony composer install"
2020-04-10 09:10:54 +00:00
pushd $theme_path
run_command "Install theme dependencies" "symfony run npm install"
popd
2020-04-10 08:57:54 +00:00
2020-04-10 09:10:54 +00:00
pushd web
2020-04-10 08:57:54 +00:00
run_command "Install Drupal" "symfony php ../vendor/bin/drush site-install -y --existing-config"
2020-04-10 09:10:54 +00:00
popd