#!/usr/bin/env bash
# @desc: Bootstrap the local dev environment (containers + DB + frontend)
set -euo pipefail

ampelos up
ampelos migrate --force
ampelos artisan db:seed --force
npm run build

cat <<'NOTE'

✓ Local dev environment ready.

  Visit http://localhost:8080 to get started.

NOTE
