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/sh | |
#to run this command type: sh install.sh sitename | |
if [ -e $1 ]; | |
then | |
echo "ERROR: please supply site name ie: thewiredmouse" | |
exit 1 | |
fi |
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/sh | |
# | |
# Read Me: To run this command type: sh setup.sh sitename cms | |
# | |
# Author: Dustin Harrell (The Wired Mouse) | |
# Version: 2.0.dev | |
# Description: Running this script will configure a new custom website for development within our development environment | |
# | |
if [ -e $1 ]; |
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/sh | |
#to run this command type: sh install.sh sitename | |
if [ -e $1 ]; | |
then | |
echo "ERROR: please supply site name ie: thewiredmouse" | |
exit 1 | |
fi |
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/sh | |
# This is usually run by the d_install script (https://gist.github.com/treall/240b8408cd944c17551a) | |
# This script will: | |
# make sure you're in the correct directory, | |
# download the latest drupal 7 release, | |
# install our frequently used modules, | |
# setup the admin account, | |
# create an Aurora subtheme, | |
# update the .htaccess file for use on our outdated dev server, |
NewerOlder