Created
March 2, 2018 03:27
-
-
Save CashWilliams/2afea4494de492941506b62ccbdd2cab to your computer and use it in GitHub Desktop.
Quick Drupal umami demo (with sqlite)
This file contains hidden or 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
#!/bin/sh | |
wget https://raw.githubusercontent.com/composer/getcomposer.org/1b137f8bf6db3e79a38a5bc45324414a6b1f9df2/web/installer -O - -q | php -- --quiet | |
php composer.phar create-project drupal/drupal:8.5.0-rc1 --no-dev | |
cd drupal | |
php ../composer.phar require drush/drush | |
./vendor/drush/drush/drush si demo_umami --account-pass=admin --db-url=sqlite://sites/default/files/.ht.sqlite -y | |
./vendor/drush/drush/drush rs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment