#!/bin/bash # Setup Umami database on Mac Mini # Run this script after starting PostgreSQL container set -e echo "Creating Umami database..." # Check if running inside docker network or from host if docker ps | grep -q mana-postgres; then docker exec -i mana-postgres psql -U postgres <