#!/bin/bash set -e pnpm install --frozen-lockfile # Task #511: idempotent destructive cleanup of the removed Chat feature # (drops chat tables, deletes chat-related notifications, removes the chat # app catalog row + link rows). Runs before push so push won't see chat # tables in the live DB that aren't in the schema. Safe to run repeatedly. pnpm --filter scripts run remove-chat pnpm --filter db run push-force # Idempotent: ensure the default groups exist and existing users are mapped # (Admins, Tx, Everyone). Safe to run repeatedly. pnpm --filter scripts run seed pnpm --filter @workspace/tx-os exec playwright install chromium