Last active
March 1, 2018 22:46
-
-
Save CashWilliams/a3e84c11e478369109f8581d2eb7ce7e to your computer and use it in GitHub Desktop.
quick drupal
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 --no-dev | |
cd drupal | |
php ../composer.phar require drush/drush | |
./vendor/drush/drush/drush si --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