Miscellania

Just a collection of random stuff ...

.profile

if [ -f ~/.bashrc ]; then
  . ~/.bashrc
fi

.bashrc

export PATH=/usr/local/bin:$PATH
. ~/scripts/env_settings
. ~/scripts/aliases
. ~/scripts/bashfuncs
export PGDATA=/usr/local/var/postgres/
alias postgres_start='pg_ctl start -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log'
alias postgres_stop='pg_ctl stop -D /usr/local/var/postgres -s -m fast'
alias mongo='mongod --config /usr/local/etc/mongod.conf'