Skip to content

Instantly share code, notes, and snippets.

@omero
Last active December 28, 2015 19:49
Show Gist options
  • Save omero/40977aa4e1122cb37307 to your computer and use it in GitHub Desktop.
Save omero/40977aa4e1122cb37307 to your computer and use it in GitHub Desktop.
Drupal Console Install Instructions
# Run this in your terminal to get the latest project version:
curl https://drupalconsole.com/installer -L -o drupal.phar
# Or if you don't have curl:
php -r "readfile('https://drupalconsole.com/installer');" > drupal.phar
# Accessing from anywhere on your system:
mv drupal.phar /usr/local/bin/drupal
# Apply executable permissions on the downloaded file:
chmod +x /usr/local/bin/drupal
# Copy configuration files to user home directory:
drupal init --override
# Download, install and serve Drupal 8:
drupal chain --file=~/.console/chain/quick-start.yml
# Create a new Drupal 8 project:
drupal site:new drupal8.dev 8.0.0
# Lists all available commands:
drupal list
# Update DrupalConsole to the latest version:
drupal self-update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment