#!/bin/bash

set -euo pipefail

mysql \
    --host=127.0.0.1 \
    --user=$DB_USER \
    --password=$DB_PASSWORD \
    -e "SELECT 1;" || exit 1
