Last active
March 26, 2016 04:09
-
-
Save saltednut/5110901 to your computer and use it in GitHub Desktop.
Revisions
-
Brant Wynn revised this gist
Jan 23, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ drupal_install_clean_env() { cd ~/ fi if [[ -r $1 ]]; then drush make --working-copy --concurrency=5 $1 $2 cd $2 drush si $7 --db-url=mysql://$3:$4@localhost:3306/$5 --db-su=$3 --db-su-pw=$4 --site-name="$6" --account-name=admin --account-pass=admin -y # Files directory (local dev) -
brantwynn revised this gist
Dec 27, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ drupal_install_clean_env() { cd ~/ fi if [[ -r $1 ]]; then drush make --working-copy $1 $2 cd $2 drush si $7 --db-url=mysql://$3:$4@localhost:3306/$5 --db-su=$3 --db-su-pw=$4 --site-name="$6" --account-name=admin --account-pass=admin -y # Files directory (local dev) -
brantwynn revised this gist
May 31, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ #!/usr/bin/env bash # Usage: dice makefile docroot dbuser dbpass dbname sitename install-profile drupal_install_clean_env() { -
brantwynn renamed this gist
Mar 8, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
brantwynn revised this gist
Mar 8, 2013 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ # sourced from .zshrc (or .bash_profile) # Usage: dice makefile docroot dbuser dbpass dbname sitename install-profile drupal_install_clean_env() { if [[ -r $2 ]]; then sudo rm -r $2 cd ~/ @@ -16,4 +16,4 @@ drupal_install_clean() { #sudo chown -R _www:_www $2/sites/default/files fi } alias dice=drupal_install_clean_env -
brantwynn revised this gist
Mar 7, 2013 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -15,4 +15,5 @@ drupal_install_clean() { # Files directory (remote dev/stage/prod) #sudo chown -R _www:_www $2/sites/default/files fi } alias dic=drupal_install_clean -
brantwynn created this gist
Mar 7, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ # sourced from .zshrc (or .bash_profile) # Usage: dic makefile docroot dbuser dbpass dbname sitename install-profile drupal_install_clean() { if [[ -r $2 ]]; then sudo rm -r $2 cd ~/ fi if [[ -r $1 ]]; then drush make $1 $2 cd $2 drush si $7 --db-url=mysql://$3:$4@localhost:3306/$5 --db-su=$3 --db-su-pw=$4 --site-name="$6" --account-name=admin --account-pass=admin -y # Files directory (local dev) sudo chmod -R 777 $2/sites/default/files # Files directory (remote dev/stage/prod) #sudo chown -R _www:_www $2/sites/default/files fi }