Skip to content
Snippets Groups Projects
irdb_vars 215 B
Newer Older
if [ -z $PGHOST ]; then 
	export PGHOST=127.0.0.1
fi
if [ -z $PGUSER ]; then 
	export PGUSER=$USER
fi
if [ -z $PGPORT ]; then 
	export PGPORT=5432
fi
if [ -z $PGDATABASE ]; then 
	export PGDATABASE=peasoup_$USER
fi