9 lines
356 B
Bash
Executable file
9 lines
356 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
export PATH="/opt/homebrew/opt/postgresql@16/bin:$PATH"
|
|
|
|
export LDFLAGS="-L/opt/homebrew/opt/postgresql@16/lib"
|
|
export CPPFLAGS="-I/opt/homebrew/opt/postgresql@16/include"
|
|
export PKG_CONFIG_PATH="/opt/homebrew/opt/postgresql@16/lib/pkgconfig"
|
|
|
|
LC_ALL="C" /opt/homebrew/opt/postgresql@16/bin/postgres -D /opt/homebrew/var/postgresql@16
|