I hereby claim:
- I am doostinharrell on github.
- I am doostinharrell (https://keybase.io/doostinharrell) on keybase.
- I have a public key ASD4R1d5CCiXHiVZDP21rtPRxYC7T-QRdjjXSVIyvMHLaQo
To claim this, I am signing this object:
<?php | |
/** | |
* Local configuration information. | |
* | |
* If you are working in a local/desktop development environment and want to | |
* keep your config separate, we recommend using a 'wp-config-local.php' file, | |
* which you should also make sure you .gitignore. | |
*/ | |
if (file_exists(dirname(__FILE__) . '/wp-config-local.php')) { |
// Create Aliases for Composer Dependencies | |
PATH=$PATH:$HOME/bin:$HOME/vendor/bin | |
export PATH |
I hereby claim:
To claim this, I am signing this object:
<?php | |
// Deletes all user, term, node, and commerce data to clean out a website. | |
$entity_types = array( | |
'user' => array( | |
'entity_type' => 'user', | |
'id_field' => 'uid', | |
), | |
'taxonomy_term' => array( |
<?php | |
// Database configuration. | |
$databases = array(); | |
$databases['default']['default'] = array( | |
'driver' => 'mysql', | |
'host' => 'mysql', | |
'username' => 'mysql', | |
'password' => 'mysql', | |
'database' => 'data', |
<?php | |
// Database configuration. | |
$db_host = 'database'; | |
$db_username = 'drupal6'; | |
$db_password = 'drupal6'; | |
$db_database = 'drupal6'; | |
$db_url = 'mysql://' . $db_username . ':' . $db_password . '@' . $db_host . '/' . $db_database; | |
// Update settings.php for local lando dev. |
# This file should be placed in ~/.config/fish/functions/fish_notify.fish | |
function fish_right_prompt | |
if test $CMD_DURATION | |
# Store duration of last command | |
set duration (echo "$CMD_DURATION 1000" | awk '{printf "%.3fs", $1 / $2}') | |
# OS X notification when a command takes longer than notify_duration | |
set notify_duration 10000 | |
set exclude_cmd "zsh|bash|less|man|more|ssh|drush php" |
#!/bin/bash | |
# | |
# Run this shell script to resolve drupal npm issues for the project | |
# | |
# Author: Dustin Harrell - https://github.com/doostinharrell/ | |
# Version: 1.0 | |
# | |
# Resolving issues with Drupal looking at node_module info files |
#!/bin/sh | |
# | |
# Read Me: To run this command type: sh archive.sh sitename | |
# | |
# Author: Dustin Harrell (The Wired Mouse) | |
# Version: 1.0.dev | |
# Description: Running this script will create archived zip files for deployment on Pantheon.io | |
# | |
if [ -e $1 ]; |
#!/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 |