Skip to content

Instantly share code, notes, and snippets.

View doostinharrell's full-sized avatar

Dustin Harrell doostinharrell

View GitHub Profile
@doostinharrell
doostinharrell / dev.sh
Created May 11, 2015 22:26
dev.sh - Configure .htaccess for development environment
#!/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
@doostinharrell
doostinharrell / setup.sh
Created May 11, 2015 22:25
setup.sh - The Wired Mouse development script
#!/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 ];
@doostinharrell
doostinharrell / drupal.sh
Last active July 28, 2017 14:45
drupal.sh - Drupal installation script
#!/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
#!/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,