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'); }