From bdb8af6ca2ca5502353bfa7c80dcdb4ad853b04e Mon Sep 17 00:00:00 2001 From: Catherine Renelle <32781029+catrenelle@users.noreply.github.com> Date: Wed, 25 Feb 2026 22:13:27 -0500 Subject: [PATCH] Add kanban.catrenelle.com to seed hostnames Co-Authored-By: Claude Opus 4.6 --- prisma/seed.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/prisma/seed.ts b/prisma/seed.ts index 8eb7ff3..14062a7 100644 --- a/prisma/seed.ts +++ b/prisma/seed.ts @@ -16,8 +16,8 @@ async function main() { } }); - // Map localhost to default tenant - const hostnames = ['localhost', '127.0.0.1']; + // Map hostnames to default tenant + const hostnames = ['localhost', '127.0.0.1', 'kanban.catrenelle.com']; for (const hostname of hostnames) { await prisma.tenantHostname.upsert({ where: { hostname }, @@ -47,7 +47,7 @@ async function main() { console.log('Seed complete.'); console.log(` Tenant: ${tenant.name} (${tenant.id})`); - console.log(' Hostnames: localhost, 127.0.0.1'); + console.log(` Hostnames: ${hostnames.join(', ')}`); console.log(' Admin: admin@example.com / admin123'); }