Created
September 5, 2012 23:02
-
-
Save astrotars/3647052 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
PS1='\w$ ' | |
alias staging-mysql='pagoda -a aisle5-staging tunnel -c db1' | |
alias staging-redis='pagoda -a aisle5-staging tunnel -c cache1' | |
alias redis='redis-server' | |
alias redis-web='resque-web -p 8282 -F -r localhost:6379' | |
alias worker-start='php -f /Applications/MAMP/htdocs/aisle5/secure/workers/worker_start.php' | |
alias worker-heartbeat='php -f /Applications/MAMP/htdocs/aisle5/secure/workers/heartbeat.worker.php' | |
DB1_HOST="localhost" | |
export DB1_HOST | |
DB1_PORT="3306" | |
export DB1_PORT | |
DB1_NAME="bertha" | |
export DB1_NAME | |
DB1_USER="root" | |
export DB1_USER | |
DB1_PASS="root" | |
export DB1_PASS | |
CACHE1_HOST="localhost" | |
export CACHE1_HOST | |
CACHE1_PORT="6379" | |
export CACHE1_PORT | |
QUEUE="default" | |
export QUEUE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment