Created
April 20, 2016 16:13
-
-
Save unixsam/e2b3dcc8fec697475e39ed9626a0791c to your computer and use it in GitHub Desktop.
This file contains 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
## On Development | |
# NOTE: make sure that you commented variables with force override in local.settings.php for Varbase 7.x-3.x | |
# ------------------------------------------------------------ | |
# One line commands. | |
# ------------------------------------------------------------ | |
drush vset error_level 2;drush vset preprocess_js 0;drush vset preprocess_css 0;drush vset cache 0;drush vset page_compression 0;drush vset block_cache 0;drush vset file_temporary_path '/tmp';drush en field_ui views_ui context_ui ds_ui dblog -y; | |
## On Development | |
# ------------------------------------------------------------ | |
# Same as the one line command but each command in a line. | |
# ------------------------------------------------------------ | |
drush vset error_level 2; | |
drush vset preprocess_js 0; | |
drush vset preprocess_css 0 | |
drush vset cache 0; | |
drush vset page_compression 0; | |
drush vset block_cache 0; | |
drush vset file_temporary_path '/tmp'; | |
drush en field_ui views_ui context_ui ds_ui module_filter dblog -y; | |
# only if we need to disable them. | |
drush dis memcache -y; | |
drush dis securepages -y; |
This file contains 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
## On Production | |
# ------------------------------------------------------------ | |
# One line commands. | |
# ------------------------------------------------------------ | |
drush vset preprocess_js 1;drush vset preprocess_css 1;drush vset cache 1;drush vset page_compression 1;drush vset block_cache 1;drush vset error_level 0;drush dis field_ui views_ui context_ui ds_ui dblog -y; | |
## On Production | |
# ------------------------------------------------------------ | |
# Same as the one line command but each command in a line. | |
# ------------------------------------------------------------ | |
drush vset error_level 0; | |
drush vset preprocess_js 1; | |
drush vset preprocess_css 1; | |
drush vset cache 1; | |
drush vset page_compression 1; | |
drush vset block_cache 1; | |
drush dis field_ui views_ui context_ui ds_ui dblog -y; | |
# only if we need enable them. | |
drush en memcache -y; | |
drush en securepages -y; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment