Last active
August 20, 2018 14:37
-
-
Save jmolivas/47a7f40e660154978b45 to your computer and use it in GitHub Desktop.
install Drupal Console
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
| #Bash or Zsh: Add this line to your shell configuration file: | |
| source "$HOME/.console/console.rc" 2>/dev/null | |
| #Fish: Create a symbolic link | |
| ln -s ~/.console/drupal.fish ~/.config/fish/completions/drupal.fish | |
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
| drupal init | |
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
| curl https://drupalconsole.com/installer -L -o drupal.phar | |
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
| mv drupal.phar /usr/local/bin/drupal | |
| chmod +x /usr/local/bin/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
| drupal self-update | |
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
| php drupal.phar | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For the autocomplete.sh instruction:
Which file is it? Where is it located?