I typed psql and I get this:
psql: could not connect to server: No such file or directory
Is the server running locally and accepting
con
So for me and my pals working on a Node.js app (with Postgres and Sequelize), we had to
brew install postgresql (one of us was missing postgres, one of us was not, and yet we were getting the same error msg as listed above)
brew services start postgresql **** (utilize Homebrew to start postgres)
createdb
node_modules/.bin/sequelize db:migrate
npm start