Skip to content

Instantly share code, notes, and snippets.

View mpdonadio's full-sized avatar

Matthew Donadio mpdonadio

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@timplunkett
timplunkett / setupd8
Last active January 7, 2019 21:02
Reinstall D8
#!/bin/bash
PROFILE="standard"
DB="d8"
UI=false
NO_DEV=false
OPTS=`getopt -o h --longoptions db:,profile:,ui,no-dev -- "$@"`
eval set -- "$OPTS"
while true; do

Drupal 8 command line installation helper.

This script is designed to help developers quickly spin up test installations of Drupal 8. It will clean and set up all the files and directories needed to install of Drupal 8 and by default use Drush to install to run the installation from the command line.

Thanks to @timplunkett for the initial implementation.