#!/usr/bin/env bash

set -eo pipefail

env

if [ "${CREATE_USERS}" == '1' ]; then
    cp /init/local.sql /liquibase/migrations/0_init.sql
fi

exec /bin/bash /entrypoint $@
