From: Silvio Rhatto Date: Sat, 28 Oct 2017 15:37:43 +0000 (-0200) Subject: Drupal 8: Makefile: site_install_sqlite target X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=a7c5a347d928255af616af25202c268a6721fdf7;p=templater.git Drupal 8: Makefile: site_install_sqlite target --- diff --git a/share/templater/drupal8/Makefile b/share/templater/drupal8/Makefile index c535eb3..ce0eb53 100644 --- a/share/templater/drupal8/Makefile +++ b/share/templater/drupal8/Makefile @@ -95,6 +95,13 @@ drush: site_install: $(DRUSH) site-install +# Run drush site-install, sqlite version +# See https://api.drupal.org/api/drupal/core%21INSTALL.sqlite.txt/8.4.x +site_install_sqlite: + mkdir -p sql/.ht.sqlite + touch sql/dumps/.ht.sqlite + $(DRUSH) site-install --db-url=sqlite://$(CWD)/sql/dumps/.ht.sqlite + # Update the database updatedb: $(DRUSH) updatedb -y