how to start postgresql command line code example
Example 1: start postgres server
brew services start postgresql
Example 2: run postgres locally
$ pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
Example 3: start postgres server
brew services stop postgresql