# .bashrc

# User specific aliases and functions

# Source global definitions
if [ -f /etc/bashrc ]; then
	. /etc/bashrc
fi

# User specific environment and startup programs

PG="/usr/local/teamfile/tfpgsql"
PGHOST="localhost"
PGPORT="5432"
PGDATABASE="db_teamfile"

PATH="${PATH}":"${PG}"/bin
MANPATH="${MANPATH}:${PG}/man"
LD_LIBRARY_PATH="${PG}/lib:/lib:/usr/lib:/usr/local/lib:/usr/local/teamfile/lib:/usr/kerberos/lib"

export PGDATA PGHOST PGPORT PGDATABASE PATH MANPATH LD_LIBRARY_PATH

