Last active
December 25, 2015 07:29
-
-
Save axe312ger/6939762 to your computer and use it in GitHub Desktop.
Clean up drupal standard install profile and install some very useful modules.
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
# Create contrib & custom folders | |
mkdir sites/all/modules/contrib | |
mkdir sites/all/modules/custom | |
# Disable useless core modules | |
drush dis overlay color shortcut toolbar dashboard comment rdf -y | |
drush pm-uninstall overlay color shortcut toolbar dashboard comment rdf -y | |
# Install some very useful contrib modules | |
drush dl ds coffee devel admin_menu search_krumo features views module_filter -y | |
drush en ds_ui field_ui coffee devel admin_menu_toolbar search_krumo module_filter features views_ui -y | |
# Do not forget to make files directory writeable | |
chmod -R 777 sites/default/files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment