Created
September 24, 2012 17:53
-
-
Save astrotars/3777285 to your computer and use it in GitHub Desktop.
OSX Bash Profile
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
| PS1='\w$ ' | |
| alias staging-mysql='pagoda -a aisle5-staging tunnel -c db1' | |
| alias staging-redis='pagoda -a aisle5-staging tunnel -c cache1' | |
| alias production-mysql='pagoda -a aisle5 tunnel -c db1' | |
| alias production-redis='pagoda -a aisle5 tunnel -c cache1' | |
| alias redis='redis-server' | |
| alias redis-web='resque-web -p 8282 -F -r localhost:6379' | |
| alias worker-init='php -f /Applications/MAMP/htdocs/aisle5/secure/workers/init_localhost.worker.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 | |
| ASSETS="../cdn" | |
| export ASSETS | |
| UPLOADS="https://813819cd3e51188b97f1-80de390b023031473f3e2536d0dcf0ae.ssl.cf1.rackcdn.com" | |
| export UPLOADS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment