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

set -euo pipefail

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"