mnml/ops/init_db.sh
2019-05-25 15:20:38 +10:00

12 lines
343 B
Bash
Executable File

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