#!/bin/bash # sudo apt-get install -y postgresql postgresql-contrib sudo service postgresql start sudo -u postgres dropdb cryps sudo -u postgres createdb cryps sudo -u postgres createuser --encrypted cryps sudo -u postgres psql -c "alter user cryps with encrypted password 'craftbeer';" npm i npm run migrate