Created
October 30, 2012 23:10
-
-
Save dkl4/3983697 to your computer and use it in GitHub Desktop.
drush initiation on a new Dev site - D&
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
| #!/bin/bash | |
| # 2012-10-30 | |
| # This is suitable for setting up a quick working site | |
| drush pm-enable -y admin_menu | |
| drush pm-enable -y coder | |
| drush pm-enable -y devel | |
| drush pm-disable -y color | |
| drush pm-disable -y overlay | |
| # Turn off all caching | |
| drush vset cache 0 | |
| drush vset preprocess_css 0 | |
| drush vset preprocess_js 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment