Created
April 9, 2013 12:31
-
-
Save GoZOo/5345336 to your computer and use it in GitHub Desktop.
script to re-configure development variables after database 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
#!/bin/bash | |
# MOBILE | |
drush vset mobile_tools_mobile_url "http://m.local.mysite.com" | |
drush vset mobile_tools_desktop_url "http://local.mysite.com" | |
# modules | |
drush dl -y dummyimage | |
drush en -y devel dummyimage | |
# dummyimage | |
drush vset dummyimages_generate 2 | |
# DEV | |
drush vset error_level 2 | |
drush vset preprocess_css 0 | |
drush vset preprocess_js 0 | |
drush vset less_devel 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment