1f23e65c0b
Replaces all user-facing instances of "TeaBoy" with "Tx" across the application, including titles, locale files, database settings, seed data, and API documentation. Also updates internal storage keys and session secrets to remove the old branding. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 77cfe984-2c65-4152-bb7a-0df28274fe66 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 07b19cb0-11b5-4be9-8932-ae4820eb73b8 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/c3c252e4-c83d-40ca-9fff-99a3ea60701e/77cfe984-2c65-4152-bb7a-0df28274fe66/HxTkDPZ Replit-Helium-Checkpoint-Created: true
9 lines
307 B
Bash
9 lines
307 B
Bash
#!/bin/bash
|
|
set -e
|
|
pnpm install --frozen-lockfile
|
|
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/teaboy-os exec playwright install chromium
|