Rebrand PodcastYes -> Podcast Distribution AI (podcastdistributionai.com)

This commit is contained in:
Leon Serfaty
2026-06-20 20:12:43 -04:00
parent 3ad90f076f
commit 4fb2645db1
38 changed files with 94 additions and 93 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
/**
* Seed 10 demo users with realistic activity (subscriptions, episodes, usage,
* AI cost, moderation flags, an agency workspace). Idempotent: re-running first
* removes prior demo data (everything under the @demo.podcastyes.app domain and
* removes prior demo data (everything under the @demo.podcastdistributionai.com domain and
* `demo-` orgs), then recreates it.
*
* Run: npx tsx scripts/seed-demo.ts
@@ -14,7 +14,7 @@ import { auth } from "@/lib/auth/auth";
import { periodKey } from "@/lib/utils";
import type { PlanKey } from "@/lib/billing/plans";
const DOMAIN = "demo.podcastyes.app";
const DOMAIN = "demo.podcastdistributionai.com";
const PASSWORD = "Password123!";
// ── tiny helpers (plain Node script — Math.random/Date are fine here) ──
+1 -1
View File
@@ -5,7 +5,7 @@ import { auth } from "@/lib/auth/auth";
import { prisma } from "@/lib/db";
async function main() {
const email = `verify_${Date.now()}@podcastyes.test`;
const email = `verify_${Date.now()}@podcastdistributionai.test`;
try {
await auth.api.signUpEmail({
body: { email, password: "Password123!", name: "Verify User" },