This commit is contained in:
tennantje 2017-05-02 02:21:00 +00:00 committed by GitHub
commit 3504be2ed3

View file

@ -0,0 +1,6 @@
# commands to control local postgres installation
# paths are for osx installation via macports
alias startpost='pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start'
alias stoppost='pg_ctl -D /usr/local/var/postgres stop -s -m fast'
alias restartpost='stoppost && sleep 1 && startpost'