aboutsummaryrefslogtreecommitdiff
path: root/setup_db.sh
blob: 8d819e54ed117bc08734cda6789f3c851314d59f (plain) (blame)
1
2
3
4
5
6
7
8
#!/usr/bin/env bash

set -e

export PGPASSWORD=clickheretodie

psql -h db -U thulani -w -c "CREATE EXTENSION IF NOT EXISTS pgcrypto" memes
diesel migration run --database-url "postgres://thulani:clickheretodie@db/memes"