Skip to content

Instantly share code, notes, and snippets.

@axe312ger
Last active December 25, 2015 07:29
Show Gist options
  • Save axe312ger/6939762 to your computer and use it in GitHub Desktop.
Save axe312ger/6939762 to your computer and use it in GitHub Desktop.
Clean up drupal standard install profile and install some very useful modules.
# 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