2026-04-18 02:00:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
set -e
|
|
|
|
|
pnpm install --frozen-lockfile
|
2026-04-21 06:27:28 +00:00
|
|
|
pnpm --filter db run push-force
|
2026-04-22 08:40:38 +00:00
|
|
|
# Idempotent: ensure the default groups exist and existing users are mapped
|
2026-04-22 10:26:53 +00:00
|
|
|
# (Admins, Tx, Everyone). Safe to run repeatedly.
|
2026-04-22 08:40:38 +00:00
|
|
|
pnpm --filter scripts run seed
|
2026-04-22 10:52:09 +00:00
|
|
|
pnpm --filter @workspace/tx-os exec playwright install chromium
|