7 lines
197 B
Bash
7 lines
197 B
Bash
# export PGCTL="/usr/lib/postgresql/14/bin/pg_ctl" # tilde.town
|
|
export PGCTL="pg_ctl"
|
|
export PGDATA="$PWD/pgdata"
|
|
export PGHOST="$PGDATA/sockets"
|
|
export PGDATABASE="postgres"
|
|
export PGUSER="$USER"
|