Skip to content

Commit 7363d1d

Browse files
evangauerclaude
andcommitted
Pre-public sniff test cleanup
- Replace fictional real-sounding business names with consistent demo copy: "Pawsitive Care Veterinary" → "Neighborhood Veterinary" in homepage hero mockup; remove orphan seed-demo.ts (referenced the old practice name and its own "demo123" password) - Seed client emails: @gmail.com/@yahoo.com → @example.com (RFC 2606 reserved; zero risk of collision with a real person) - Seed client phones: (518) xxx-xxxx (real NY area code) → (555) 010-10xx (reserved fictional prefix) - Install page demo credentials now match what seed.ts actually creates (admin@neighborhoodvet.example.com / password123, sarah.chen, etc) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 6f09531 commit 7363d1d

6 files changed

Lines changed: 33 additions & 772 deletions

File tree

apps/www/app/install/install-content.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ const installSteps = [
6161
];
6262

6363
const demoCredentials = [
64-
{ role: "Admin / Owner", email: "sarah.chen@pawsitivecarevet.example.com", password: "demo123", note: "Full access to all settings and reports" },
65-
{ role: "Veterinarian", email: "james.rodriguez@pawsitivecarevet.example.com", password: "demo123", note: "Records, scheduling, prescriptions" },
66-
{ role: "Technician", email: "emily.chen@pawsitivecarevet.example.com", password: "demo123", note: "Records, whiteboard, inventory" },
67-
{ role: "Front Desk", email: "lisa.park@pawsitivecarevet.example.com", password: "demo123", note: "Scheduling, clients, communications" },
64+
{ role: "Admin / Owner", email: "admin@neighborhoodvet.example.com", password: "password123", note: "Full access to all settings and reports" },
65+
{ role: "Veterinarian", email: "sarah.chen@neighborhoodvet.example.com", password: "password123", note: "Records, scheduling, prescriptions" },
66+
{ role: "Technician", email: "jamie.torres@neighborhoodvet.example.com", password: "password123", note: "Records, whiteboard, inventory" },
67+
{ role: "Front Desk", email: "morgan.bailey@neighborhoodvet.example.com", password: "password123", note: "Scheduling, clients, communications" },
6868
];
6969

7070
const troubleshootingItems = [
@@ -201,7 +201,7 @@ export function InstallContent() {
201201
<div>
202202
<h3 className="text-base font-semibold text-gray-900 mb-4">Demo credentials</h3>
203203
<CredentialsTable showAccess />
204-
<p className="mt-3 text-xs text-gray-400">All accounts use password: <code className="font-mono bg-gray-100 px-1.5 py-0.5 rounded">demo123</code></p>
204+
<p className="mt-3 text-xs text-gray-400">All accounts use password: <code className="font-mono bg-gray-100 px-1.5 py-0.5 rounded">password123</code></p>
205205
</div>
206206
</div>
207207
)}

apps/www/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ export default function LandingPage() {
278278
<div className="flex items-center justify-between mb-6">
279279
<div>
280280
<div className="text-lg font-semibold text-gray-800 mb-1">Good morning, Dr. Chen</div>
281-
<div className="text-sm text-gray-400">Pawsitive Care Veterinary &middot; Wednesday, March 18</div>
281+
<div className="text-sm text-gray-400">Neighborhood Veterinary &middot; Monday, April 20</div>
282282
</div>
283283
<div className="h-9 w-28 bg-teal-600 rounded-lg flex items-center justify-center text-xs text-white font-medium">
284284
+ New Appt

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"db:migrate": "pnpm --filter @openpims/db db:migrate",
1212
"db:seed": "pnpm --filter @openpims/db db:seed",
1313
"db:reset": "pnpm --filter @openpims/db db:reset",
14-
"db:seed-demo": "pnpm --filter @openpims/db seed-demo",
1514
"db:studio": "pnpm --filter @openpims/db db:studio",
1615
"clean": "turbo clean",
1716
"test:e2e": "playwright test",

packages/db/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
"db:migrate": "drizzle-kit migrate",
1414
"db:seed": "tsx seed.ts",
1515
"db:reset": "tsx reset.ts",
16-
"db:studio": "drizzle-kit studio",
17-
"seed-demo": "tsx seed-demo.ts"
16+
"db:studio": "drizzle-kit studio"
1817
},
1918
"dependencies": {
2019
"dotenv": "^16.4.0",

0 commit comments

Comments
 (0)